pr1/presence/domain/Service/GroupService.cs

95 lines
4.1 KiB
C#
Raw Normal View History

2024-12-23 09:12:26 +00:00
using data.Repository;
2024-12-19 17:36:57 +00:00
using domain.Models.ResponseModels;
using domain.Request;
2024-12-05 09:30:01 +00:00
using domain.UseCase;
2024-12-23 09:12:26 +00:00
using presence.data.RemoteData.RemoteDataBase.DAO;
using presence.data.Repository;
using presence.domain.Models;
2024-12-19 17:36:57 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-12-05 09:30:01 +00:00
namespace domain.Service
{
public class GroupService : IGroupUseCase
{
2024-12-19 17:36:57 +00:00
private readonly IGroupRepository _groupRepository;
2024-12-23 09:12:26 +00:00
// Конструктор, инициализирующий репозиторий групп
2024-12-19 17:36:57 +00:00
public GroupService(IGroupRepository groupRepository)
2024-12-05 09:30:01 +00:00
{
2024-12-19 17:36:57 +00:00
_groupRepository = groupRepository;
2024-12-05 09:30:01 +00:00
}
2024-12-23 09:12:26 +00:00
public void AddGroup(AddGroupRequest addGroupRequest) //Метод для добавления новой группы
2024-12-05 09:30:01 +00:00
{
2024-12-23 09:12:26 +00:00
// Создаем новый объект GroupDao и добавляем его через репозиторий
2024-12-19 17:36:57 +00:00
_groupRepository.AddGroup(new GroupDao { Name = addGroupRequest.Name });
2024-12-05 09:30:01 +00:00
}
2024-12-23 09:12:26 +00:00
public void AddGroupWithStudents(AddGroupWithStudentsRequest addGroupWithStudents) //Метод для добавления группы вместе со студентами
2024-12-05 09:30:01 +00:00
{
2024-12-23 09:12:26 +00:00
// Создаем объект GroupDao для группы
2024-12-19 17:36:57 +00:00
GroupDao groupDAO = new GroupDao { Name = addGroupWithStudents.addGroupRequest.Name };
2024-12-23 09:12:26 +00:00
// Преобразуем список студентов в список объектов UserDao
2024-12-19 17:36:57 +00:00
List<UserDao> users = addGroupWithStudents
.AddStudentRequests
.Select(it => new UserDao { FIO = it.StudentName })
.ToList();
2024-12-23 09:12:26 +00:00
// Добавляем группу и студентов через репозиторий
2024-12-19 17:36:57 +00:00
_groupRepository.AddStudents(groupDAO, users);
2024-12-05 09:30:01 +00:00
}
2024-12-23 09:12:26 +00:00
public IEnumerable<GroupResponse> GetGroupsWithStudents() //Метод для получения групп с их студентами синхронно
2024-12-05 09:30:01 +00:00
{
2024-12-23 09:12:26 +00:00
// Получаем все группы из репозитория
return _groupRepository.GetAllGroup().Select(
2024-12-19 17:36:57 +00:00
group => new GroupResponse
{
Id = group.Id,
Name = group.Name,
2024-12-23 09:12:26 +00:00
User = group.User != null ? group.User.Select(
2024-12-19 17:36:57 +00:00
user => new UserResponse
{
Id = user.UserId,
FIO = user.FIO,
Group = new GroupResponse
{
Id = group.Id,
Name = group.Name,
}
2024-12-23 09:12:26 +00:00
}).ToList() : new List<UserResponse>() // Возвращаем пустой список, если нет студентов
2024-12-19 17:36:57 +00:00
}).ToList();
2024-12-05 09:30:01 +00:00
}
2024-12-23 09:12:26 +00:00
public async Task<IEnumerable<GroupResponse>> GetGroupsWithStudentsAsync() // Асинхронный метод для получения групп с их студентами
2024-12-05 09:30:01 +00:00
{
2024-12-23 09:12:26 +00:00
// Запрашиваем все группы асинхронно из репозитория
var result = await _groupRepository.getAllGroupAsync();
// Преобразуем результаты в список GroupResponse с необходимыми данными
return result.Select(
2024-12-19 17:36:57 +00:00
group => new GroupResponse
{
Id = group.Id,
Name = group.Name,
2024-12-23 09:12:26 +00:00
User = group.User.Select(
2024-12-19 17:36:57 +00:00
user => new UserResponse
{
Id = user.UserId,
FIO = user.FIO,
Group = new GroupResponse
{
Id = group.Id,
Name = group.Name,
}
2024-12-23 09:12:26 +00:00
}).ToList()
2024-12-19 17:36:57 +00:00
}).ToList();
2024-12-05 09:30:01 +00:00
}
2024-12-23 09:12:26 +00:00
2024-12-05 09:30:01 +00:00
}
2024-12-23 09:12:26 +00:00
}