Raspisanie/Zurnal/Date/Repository/UserRepositoryImpl.cs

106 lines
3.0 KiB
C#
Raw Normal View History

2024-10-23 08:14:10 +00:00
using Zurnal.domain.Models;
2024-10-21 11:56:16 +00:00
using Zurnal.Date.LocalDate;
using Zurnal.Date.Repository;
2024-10-23 08:14:10 +00:00
namespace Zurnal.Data.Repository
2024-10-21 11:56:16 +00:00
{
public class UserRepositoryImpl : IGroupRepository
{
2024-10-25 09:20:05 +00:00
public UserRepositoryImpl() => GetAllUsers = LocalStaticData.users;
2024-10-21 11:56:16 +00:00
public List<UserLocalEnity> GetAllUsers
{ get; set; }
public bool RemoveUserByGuid(Guid userGuid)
{
UserLocalEnity? userLocal = GetAllUsers
2024-10-25 09:20:05 +00:00
.Where(x => x.Guid == userGuid)
.FirstOrDefault();
2024-10-21 11:56:16 +00:00
if (userLocal == null) return false;
return GetAllUsers.Remove(userLocal);
}
public UserLocalEnity? GetUserByGuid(Guid userGuid) {
UserLocalEnity? userLocal = GetAllUsers
.Where(x => x.Guid == userGuid).FirstOrDefault();
if (userLocal == null) return null;
return userLocal;
}
public UserLocalEnity? UpdateUser(UserLocalEnity userUpdateLocalEnity) {
UserLocalEnity? userLocal = GetAllUsers
.Where(x => x.Guid == userUpdateLocalEnity.Guid).FirstOrDefault();
if (userLocal == null) return null;
userLocal.FIO = userUpdateLocalEnity.FIO;
userLocal.GroupID = userUpdateLocalEnity.GroupID;
return userLocal;
}
public List<UserLocalEnity> GetAllUsersList()
{
2024-10-25 09:20:05 +00:00
return GetAllUsersList;
2024-10-21 11:56:16 +00:00
}
2024-10-25 09:20:05 +00:00
List<GroupLocalEntity> IGroupRepository.GetAllGroups()
2024-10-21 11:56:16 +00:00
{
throw new NotImplementedException();
}
bool IGroupRepository.RemoveGroupById(int groupID)
{
throw new NotImplementedException();
}
bool IGroupRepository.UpdateGroupById(int groupID, GroupLocalEntity updatedGroup)
{
throw new NotImplementedException();
}
GroupLocalEntity IGroupRepository.GetGroupById(int groupID)
{
throw new NotImplementedException();
}
bool IGroupRepository.AddGroup(GroupLocalEntity newGroup)
{
throw new NotImplementedException();
}
2024-10-25 09:20:05 +00:00
internal object GetAllUsers()
{
throw new NotImplementedException();
}
public void AddGroup(System.Text.RegularExpressions.Group group)
{
throw new NotImplementedException();
}
public System.Text.RegularExpressions.Group GetGroupById(int id)
{
throw new NotImplementedException();
}
public IEnumerable<System.Text.RegularExpressions.Group> GetAllGroups()
{
throw new NotImplementedException();
}
public void UpdateGroup(System.Text.RegularExpressions.Group group)
{
throw new NotImplementedException();
}
public void DeleteGroup(int id)
{
throw new NotImplementedException();
}
public object GetAllGroup()
{
throw new NotImplementedException();
}
2024-10-21 11:56:16 +00:00
}
}