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 void AddGroup(AddGroupRequest addGroupRequest); public void AddGroupWithStudents(AddGroupWithStudentRequest addGroupWithStudentRequest); public void RemoveGroup(RemoveGroupRequest removeGroupRequest); public void EditGroup(EditGroupRequest editGroupRequest); public IEnumerable GetGroupsWithStudents(); } }