2024-12-04 21:58:43 +00:00
|
|
|
|
using domain.Entity;
|
|
|
|
|
using domain.Request;
|
2024-11-16 21:45:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace domain.UseCase
|
|
|
|
|
{
|
|
|
|
|
public interface IGroupUseCase
|
|
|
|
|
{
|
2024-12-04 21:58:43 +00:00
|
|
|
|
public IEnumerable<GroupEntity> GetGroupsWithStudents();
|
2024-12-07 15:33:26 +00:00
|
|
|
|
public Task<IEnumerable<GroupEntity>> GetGroupsWithStudentsAsync();
|
2024-11-16 21:45:57 +00:00
|
|
|
|
public void AddGroup(AddGroupRequest addGroupRequest);
|
2024-11-18 16:36:42 +00:00
|
|
|
|
public void AddGroupWithStudents(AddGroupWithStudentsRequest addGroupWithStudents);
|
2024-11-16 21:45:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|