2024-11-01 19:07:13 +00:00
|
|
|
using Demo.Domain.Models;
|
|
|
|
|
|
|
|
namespace Demo.Domain.UseCase
|
|
|
|
{
|
|
|
|
public interface IPresenceUseCase
|
|
|
|
{
|
|
|
|
List<Presence> GetPresenceByGroup(int groupID);
|
|
|
|
List<Presence> GetPresenceByGroupByTime(int groupID, DateOnly date);
|
|
|
|
List<Presence> GetPresenceByUser(Guid userGuid);
|
|
|
|
List<Presence> GetFalsePresenceByUser(Guid userGuid);
|
|
|
|
List<Presence> GetFalsePresenceByGroup(int groupID);
|
|
|
|
bool IsAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid);
|
|
|
|
bool GeneratePresence(int firstLesson, int lastLesson, int groupID, DateOnly date);
|
|
|
|
bool GeneratePresenceWeek(int firstLesson, int lastLesson, int groupID, DateOnly date);
|
2024-11-08 17:42:34 +00:00
|
|
|
bool DeletePresence();
|
2024-11-11 12:00:01 +00:00
|
|
|
bool DeletePresenceByUser(Guid userGuid);
|
|
|
|
bool DeletePresenceByGroup(int groupID);
|
|
|
|
bool DeletePresenceByDateRange(DateOnly startDate, DateOnly endDate);
|
|
|
|
PresenceResponse GetPresencebyAll(int GroupID, DateOnly? start = null, DateOnly? end = null, Guid userGuid = default);
|
2024-11-01 19:07:13 +00:00
|
|
|
}
|
|
|
|
}
|