2024-11-30 23:05:07 +01:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
using Wino.Core;
|
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
|
namespace Wino.Mail.ViewModels;
|
|
|
|
|
|
|
|
|
|
|
|
public static class MailViewModelsContainerSetup
|
2024-11-30 23:05:07 +01:00
|
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
|
public static void RegisterViewModelService(this IServiceCollection services)
|
2024-11-30 23:05:07 +01:00
|
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
|
// View models use core services.
|
|
|
|
|
|
services.RegisterCoreServices();
|
2024-11-30 23:05:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|