2024-12-05 09:30:01 +00:00
|
|
|
|
using domain.Entity;
|
2024-12-19 17:36:57 +00:00
|
|
|
|
using domain.Models.ResponseModels;
|
2024-12-05 09:30:01 +00:00
|
|
|
|
using domain.Request;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace domain.UseCase
|
|
|
|
|
{
|
|
|
|
|
public interface IGroupUseCase
|
|
|
|
|
{
|
2024-12-19 17:36:57 +00:00
|
|
|
|
public Task<IEnumerable<GroupResponse>> GetGroupsWithStudentsAsync();
|
|
|
|
|
public IEnumerable<GroupResponse> GetGroupsWithStudents();
|
2024-12-05 09:30:01 +00:00
|
|
|
|
public void AddGroup(AddGroupRequest addGroupRequest);
|
2024-12-19 17:36:57 +00:00
|
|
|
|
public void AddGroupWithStudents(AddGroupWithStudentsRequest addGroupWithStudents);
|
|
|
|
|
|
2024-12-05 09:30:01 +00:00
|
|
|
|
}
|
2024-12-19 17:36:57 +00:00
|
|
|
|
}
|