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);
|