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