2024-12-01 03:05:15 +01:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
using Wino.Core;
|
|
|
|
|
|
|
2025-05-18 14:06:25 +02:00
|
|
|
|
namespace Wino.Calendar.ViewModels;
|
|
|
|
|
|
|
|
|
|
|
|
public static class CalendarViewModelContainerSetup
|
2024-12-01 03:05:15 +01:00
|
|
|
|
{
|
2025-05-18 14:06:25 +02:00
|
|
|
|
public static void RegisterCalendarViewModelServices(this IServiceCollection services)
|
2024-12-01 03:05:15 +01:00
|
|
|
|
{
|
2025-05-18 14:06:25 +02:00
|
|
|
|
services.RegisterCoreServices();
|
2024-12-01 03:05:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|