presence_sample_v2/domain/UseCase/IGroupUseCase.cs

19 lines
537 B
C#
Raw Permalink Normal View History

2024-11-22 12:18:04 +00:00
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();
2024-11-25 10:47:17 +00:00
public Task<IEnumerable<GroupEntity>> GetGroupsWithStudentsAsync();
2024-11-22 12:18:04 +00:00
public void AddGroup(AddGroupRequest addGroupRequest);
public void AddGroupWithSutdents(AddGroupWithStudentsRequest addGroupWithStudents);
}
}