18 lines
461 B
C#
18 lines
461 B
C#
|
using domain.Entity;
|
|||
|
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 IEnumerable<GroupEntity> GetGroupsWithStudents();
|
|||
|
public void AddGroup(AddGroupRequest addGroupRequest);
|
|||
|
public void AddGroupWithSutdents(AddGroupWithStudentsRequest addGroupWithStudents);
|
|||
|
}
|
|||
|
}
|