using Demo.Domain.Models; namespace Demo.Domain.UseCase { public interface IPresenceUseCase { List GetPresenceByGroup(int groupID); List GetPresenceByGroupByTime(int groupID, DateOnly date); List GetPresenceByUser(Guid userGuid); List GetFalsePresenceByUser(Guid userGuid); List 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); } }