10 lines
254 B
C#
10 lines
254 B
C#
|
using Demo.Domain.Models;
|
||
|
|
||
|
namespace Demo.Domain.UseCase
|
||
|
{
|
||
|
public interface IAdminUseCase{
|
||
|
bool ExcelExport(int groupID);
|
||
|
List<Presence> GetPresenceByUser(Guid userGuid);
|
||
|
List<Presence> GetPresenceByGroup(int groupID);
|
||
|
}
|
||
|
}
|