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 GetGroupsWithStudents(); public Task> GetGroupsWithStudentsAsync(); public void AddGroup(AddGroupRequest addGroupRequest); public void AddGroupWithStudents(AddGroupWithStudentsRequest addGroupWithStudents); } }