using Zurnal.Data.Repository; using Zurnal.Date.Repository; using Zurnal.RemaDateBase.DateDao; namespace Zurnal.Domain.UseCase { public class UserUseCase : IGroupRepository { private readonly UserRepositoryImpl _repositoryUserImpl; internal IGroupRepository RepositoryGroupImpl { get; } public UserUseCase(UserRepositoryImpl repositoryImpl, GroupRepositoryImpl repositoryGroupImpl) { _repositoryUserImpl = repositoryImpl; RepositoryGroupImpl = (IGroupRepository?)(repositoryGroupImpl ?? throw new ArgumentNullException(nameof(repositoryGroupImpl))); } public List GetAllUsers() => _repositoryUserImpl.GetAllUsersList() .Join(RepositoryGroupImpl.AllGroup, user => user.GroupID, group => group.Id, (user, group) => new UserDao { FIO = user.FIO, UserGuid = user.Guid, Group = new GroupDao { Id = group.Id, GroupName = group.GroupName }, GroupID = group.Id } ).ToList(); public bool RemoveUserByGuid(Guid userGuid) { return _repositoryUserImpl.RemoveUserByGuid(userGuid); } public UserDao UpdateUser(UserDao user, int groupId) { UserLocalEntity userLocalEntity = new UserLocalEntity { FIO = user.FIO, GroupID = groupId, Guid = user.UserGuid }; UserLocalEntity? result = _repositoryUserImpl.UpdateUser(userLocalEntity); if (result == null) throw new Exception("Пользователь не обновлен."); GroupDao? group = GetAllGroups().FirstOrDefault(it => it.Id == result.GroupID); if (group == null) throw new Exception("Група не нфйдуна."); return new UserDao { FIO = user.FIO, UserGuid = user.UserGuid, Group = group, GroupID = group.Id }; } public IEnumerable GetAllGroups() { return RepositoryGroupImpl.AllGroup; } public UserDao FindUserByGuid(Guid userGuid) { var user = _repositoryUserImpl.GetAllUsersList().FirstOrDefault(u => u.Guid == userGuid); if (user == null) { Console.WriteLine("Пользователь не найден."); return null; } GroupDao group = RepositoryGroupImpl.AllGroup.FirstOrDefault(g => g.Id == user.GroupID); if (group == null) { Console.WriteLine("Группа не найдена."); return null; } return new UserDao { FIO = user.FIO, UserGuid = user.Guid, Group = group, GroupID = group.Id }; } public List AllGroup => RepositoryGroupImpl.AllGroup.ToList(); List IGroupRepository.AllGroup => throw new NotImplementedException(); IEnumerable IGroupRepository.AllGroups() { return (IEnumerable)((IGroupRepository)_repositoryUserImpl).GetAllGroups(); } public bool RemoveGroupById(int groupID) { throw new NotImplementedException(); } public bool UpdateGroupById(int groupID, GroupDao updatedGroup) { throw new NotImplementedException(); } public bool AddGroup(GroupDao newGroup) { throw new NotImplementedException(); } public void AddGroupFromRegex(System.Text.RegularExpressions.Group group) { throw new NotImplementedException(); } public GroupDao GetGroupById(int id) { throw new NotImplementedException(); } IEnumerable IGroupRepository.GetAllGroups() { throw new NotImplementedException(); } public void UpdateGroup(GroupDao group) { throw new NotImplementedException(); } public void DeleteGroup(int id) { throw new NotImplementedException(); } internal class UserLocalEntity { public string FIO { get; set; } public int GroupID { get; set; } public Guid Guid { get; set; } } } }