27 lines
983 B
C#
27 lines
983 B
C#
using Demo.Data.RemoteData.RemoteDataBase;
|
|
using Demo.Data.Repository;
|
|
using Demo.Domain.UseCase;
|
|
using Demo.UI;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
IServiceCollection services = new ServiceCollection();
|
|
|
|
services
|
|
|
|
.AddDbContext<RemoteDatabaseContext>()
|
|
.AddSingleton<IGroupRepository, SQLGroupRepositoryImpl>()
|
|
.AddSingleton<IUserRepository, SQLUserRepositoryImpl>()
|
|
.AddSingleton<IPresenceRepository, SQLPresenceRepositoryImpl>()
|
|
.AddSingleton<IAdminRepository, SQLAdminRepositoryImpl>()
|
|
.AddSingleton<IGroupUseCase, GroupUseCase>()
|
|
.AddSingleton<IUserUseCase, UserUseCase>()
|
|
.AddSingleton<IPresenceUseCase, PresenceUseCase>()
|
|
.AddSingleton<IAdminUseCase, AdminUseCase>()
|
|
.AddSingleton<UserConsoleUI>()
|
|
.AddSingleton<AdminConsoleUI>()
|
|
.AddSingleton<MainMenuUI>();
|
|
|
|
var serviceProvider = services.BuildServiceProvider();
|
|
|
|
MainMenuUI? mainMenuUI = serviceProvider.GetService<MainMenuUI>();
|