Compare commits

..

No commits in common. "60be08bbd449da80c8a8ad271d848ef95bedb5d8" and "1547eaee8d938fc2894436458dcb653a79f8c499" have entirely different histories.

6 changed files with 20 additions and 39 deletions

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace Demo.domain.Models
{
public class PresenceLocalEntity
internal class PresenceLocalEntity
{
public required Guid UserGuid { get; set; }
public bool IsAttedance { get; set; } = true;

View File

@ -10,7 +10,6 @@ namespace Demo.domain.Models
{
public required string FIO { get; set; }
public Guid Guid { get; set; }
public Guid Guid2 { get; set; }
public required int GroupID { get; set; }

View File

@ -27,33 +27,5 @@ namespace Demo.Data.LocalData
new UserLocalEnity{Guid=Guid.Parse("efcc1473-c116-4244-b3f7-f2341a5c3003"), FIO = "RandomFio4", GroupID = 2 },
new UserLocalEnity{Guid=Guid.Parse("60640fb3-ace2-4cad-81d5-a0a58bc2dbbd"), FIO = "RandomFio5", GroupID = 3 },
};
public static List<PresenceLocalEntity> presences => new List<PresenceLocalEntity> {
new PresenceLocalEntity {
Date = DateOnly.FromDateTime(DateTime.Now),
IsAttedance = true,
LessonNumber = 1,
UserGuid = Guid.Parse("e6b9964d-ea9f-420a-84b9-af9633bbfab9")},
new PresenceLocalEntity {
Date = DateOnly.FromDateTime(DateTime.Now),
IsAttedance = true,
LessonNumber = 2,
UserGuid = Guid.Parse("e6b9964d-ea9f-420a-84b9-af9633bbfab9")},
new PresenceLocalEntity {
Date = DateOnly.FromDateTime(DateTime.Now),
IsAttedance = true,
LessonNumber = 3,
UserGuid = Guid.Parse("e6b9964d-ea9f-420a-84b9-af9633bbfab9") },
new PresenceLocalEntity {
Date = DateOnly.FromDateTime(DateTime.Now),
IsAttedance = true,
LessonNumber = 4,
UserGuid = Guid.Parse("e6b9964d-ea9f-420a-84b9-af9633bbfab9") },
new PresenceLocalEntity {
Date = DateOnly.FromDateTime(DateTime.Now),
IsAttedance = true,
LessonNumber = 4,
UserGuid = Guid.Parse("e6b9964d-ea9f-420a-84b9-af9633bbfab9") }
};
}
}

View File

@ -10,8 +10,13 @@ namespace Demo.Data.Repository
{
public class UserRepositoryImpl
{
public List<UserLocalEnity> GetAllUsers = new List<UserLocalEnity>();
public UserRepositoryImpl() {
GetAllUsers = LocalStaticData.users;
}
public List<UserLocalEnity> GetAllUsers
{ get; set; }
public bool RemoveUserByGuid(Guid userGuid)
{
UserLocalEnity? userLocal = GetAllUsers

View File

@ -13,12 +13,6 @@ namespace Demo.Domain.UseCase
private readonly UserRepositoryImpl _repositoryUserImpl;
private readonly IGroupRepository _repositoryGroupImpl;
public UserUseCase(IGroupRepository repository) {
_repositoryGroupImpl = repository;
_repositoryUserImpl = new UserRepositoryImpl();
}
public UserUseCase(UserRepositoryImpl repositoryImpl, IGroupRepository repositoryGroupImpl)
{
_repositoryUserImpl = repositoryImpl;

View File

@ -1 +1,12 @@


using Demo.Data.Repository;
using Demo.Domain.UseCase;
using Demo.UI;
GroupRepositoryImpl groupRepositoryImpl = new GroupRepositoryImpl();
UserRepositoryImpl userRepositoryImpl = new UserRepositoryImpl();
UserUseCase userUseCase = new UserUseCase(userRepositoryImpl, groupRepositoryImpl);
MainMenuUI mainMenuUI = new MainMenuUI(userUseCase);