xxxproject/Demo/Domain/UseCase/UserUseCase.cs

62 lines
2.3 KiB
C#
Raw Permalink Normal View History

2024-10-14 11:19:48 +00:00
using Demo.Data.Repository;
2024-10-14 11:51:48 +00:00
using Demo.domain.Models;
2024-10-14 11:19:48 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
namespace Demo.Domain.UseCase
{
public class UserUseCase
{
2024-10-21 12:42:07 +00:00
private readonly UserRepositoryImpl _repositoryUserImpl;
private readonly IGroupRepository _repositoryGroupImpl;
2024-10-14 11:19:48 +00:00
2024-10-21 12:42:07 +00:00
public UserUseCase(UserRepositoryImpl repositoryImpl, IGroupRepository repositoryGroupImpl)
2024-10-14 11:19:48 +00:00
{
2024-10-14 11:51:48 +00:00
_repositoryUserImpl = repositoryImpl;
_repositoryGroupImpl = repositoryGroupImpl;
2024-10-14 11:19:48 +00:00
}
2024-10-21 12:42:07 +00:00
private List<Group> GetAllGroups() => _repositoryGroupImpl.GetAllGroup()
2024-10-18 09:51:43 +00:00
.Select(it => new Group { Id = it.Id, Name = it.Name }).ToList();
public List<User> GetAllUsers() => _repositoryUserImpl.GetAllUsers
2024-10-21 12:42:07 +00:00
.Join(_repositoryGroupImpl.GetAllGroup(),
2024-10-14 11:51:48 +00:00
user => user.GroupID,
group => group.Id,
2024-10-18 09:51:43 +00:00
(user, group) =>
new User { FIO = user.FIO, Guid = user.Guid, Group = new Group { Id = group.Id, Name = group.Name } }
).ToList();
public bool RemoveUserByGuid(Guid userGuid)
{
return _repositoryUserImpl.RemoveUserByGuid(userGuid);
2024-10-16 07:01:04 +00:00
}
2024-10-18 09:51:43 +00:00
public User UpdateUser(User user)
{
2024-10-14 11:51:48 +00:00
UserLocalEnity userLocalEnity = new UserLocalEnity { FIO = user.FIO, GroupID = user.Group.Id, Guid = user.Guid };
UserLocalEnity? result = _repositoryUserImpl.UpdateUser(userLocalEnity);
if (result == null) throw new Exception("");
Group? group = GetAllGroups().FirstOrDefault(it => it.Id == result!.GroupID);
if (group == null) throw new Exception("");
2024-10-18 09:51:43 +00:00
return new User { FIO = user.FIO, Guid = user.Guid, Group = group };
}
public User? FindUserByGuid(Guid userGuid)
{
var userLocal = _repositoryUserImpl.GetUserByGuid(userGuid);
if (userLocal == null) return null;
2024-10-21 12:42:07 +00:00
var group = _repositoryGroupImpl.GetAllGroup().FirstOrDefault(g => g.Id == userLocal.GroupID);
2024-10-18 09:51:43 +00:00
return new User
{
FIO = userLocal.FIO,
Guid = userLocal.Guid,
Group = group != null ? new Group { Id = group.Id, Name = group.Name } : null
};
2024-10-14 11:51:48 +00:00
}
2024-10-14 11:19:48 +00:00
}
}