presenceNikita/Demo/Program.cs

13 lines
430 B
C#
Raw Permalink Normal View History

2024-10-16 08:22:40 +00:00

using Demo.Data.Repository;
using Demo.Domain.UseCase;
using Demo.UI;
2024-10-21 08:46:20 +00:00
2024-10-16 08:22:40 +00:00
GroupRepositoryImpl groupRepositoryImpl = new GroupRepositoryImpl();
UserRepositoryImpl userRepositoryImpl = new UserRepositoryImpl();
UserUseCase userUseCase = new UserUseCase(userRepositoryImpl, groupRepositoryImpl);
2024-10-18 17:27:46 +00:00
GroupUseCase groupUseCase = new GroupUseCase(groupRepositoryImpl);
2024-10-16 08:22:40 +00:00
2024-10-18 17:27:46 +00:00
MainMenuUI mainMenuUI = new MainMenuUI(userUseCase, groupUseCase);