20 lines
575 B
C#
20 lines
575 B
C#
using domain.Entity;
|
|
using domain.Models.ResponseModels;
|
|
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
|
|
{
|
|
public Task<IEnumerable<GroupResponse>> GetGroupsWithStudentsAsync();
|
|
public IEnumerable<GroupResponse> GetGroupsWithStudents();
|
|
public void AddGroup(AddGroupRequest addGroupRequest);
|
|
public void AddGroupWithStudents(AddGroupWithStudentsRequest addGroupWithStudents);
|
|
|
|
}
|
|
} |