21 lines
1.0 KiB
C#
21 lines
1.0 KiB
C#
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);
|
|
bool DeletePresence();
|
|
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);
|
|
}
|
|
} |