Raspisanie/Zurnal/Domain/UseCase/GroupUseCase.cs

79 lines
2.1 KiB
C#
Raw Normal View History

2024-10-23 08:14:10 +00:00
using Zurnal.Data.Repository;
2024-11-07 11:31:00 +00:00
using Zurnal.domain.Models;
2024-11-02 09:07:18 +00:00
using Zurnal.RemaDateBase.DateDao;
2024-10-23 08:14:10 +00:00
namespace Zurnal.Domain.UseCase
2024-10-21 11:56:16 +00:00
{
2024-11-02 09:07:18 +00:00
public class GroupUseCase : IGroupRepository
2024-10-21 11:56:16 +00:00
{
2024-11-07 11:31:00 +00:00
private readonly IGroupRepository _repository;
2024-11-02 10:40:07 +00:00
private List<GroupDao> _groups = new List<GroupDao>();
2024-11-02 10:59:07 +00:00
public List<GroupDao> AllGroup => _groups;
2024-10-21 11:56:16 +00:00
private UserRepositoryImpl _repositoryUserImpl;
private GroupRepositoryImpl _repositoryGroupImpl;
2024-11-02 09:07:18 +00:00
public List<GroupDao> GetAllGroups() => _repositoryGroupImpl.GetAllGroups()
.Select(it => new GroupDao { Id = it.Id, GroupName = it.GroupName }).ToList();
2024-10-21 11:56:16 +00:00
public GroupUseCase(UserRepositoryImpl repositoryImpl, GroupRepositoryImpl repositoryGroupImpl)
{
_repositoryUserImpl = repositoryImpl;
_repositoryGroupImpl = repositoryGroupImpl;
}
2024-11-02 09:07:18 +00:00
public void AddGroup(GroupDao group)
2024-10-21 11:56:16 +00:00
{
_repositoryGroupImpl.AddGroup(group: group);
}
public void UpdateGroupName(int groupId, string newName)
{
_repositoryGroupImpl.UpdateGroupName(groupId, newName);
}
2024-11-02 09:07:18 +00:00
public IEnumerable<GroupDao> AllGroups()
{
throw new NotImplementedException();
}
public bool RemoveGroupById(int groupID)
2024-11-02 10:40:07 +00:00
{
2024-11-06 07:13:11 +00:00
var group = _repositoryGroupImpl.FindGroupById(groupID);
2024-11-02 10:40:07 +00:00
if (group == null)
{
return false;
}
_repositoryGroupImpl.DeleteGroup(groupID);
return true;
}
2024-11-02 09:07:18 +00:00
IEnumerable<GroupDao> IGroupRepository.GetAllGroups()
{
return _repositoryGroupImpl.GetAllGroups()
.Select(it => new GroupDao { Id = it.Id, GroupName = it.GroupName, Users = it.Users })
.ToList();
}
2024-11-02 10:40:07 +00:00
public GroupDao GetGroupById(int id)
2024-11-02 09:07:18 +00:00
{
2024-11-02 10:40:07 +00:00
return _groups.FirstOrDefault(g => g.Id == id);
2024-11-02 09:07:18 +00:00
}
2024-11-07 11:31:00 +00:00
public List<GroupResponse> getAllGroup(){
return _repository.GetAllGroup().Select(group =>
new GroupResponse {
Id = group.Id,
Name = group.Name
}
).ToList();
2024-10-21 11:56:16 +00:00
}
2024-11-07 11:31:00 +00:00
public List<GroupLocalEntity> GetAllGroup()
{
throw new NotImplementedException();
}
}
2024-10-21 11:56:16 +00:00
}