Demo/Domain/UseCase/IPresenceUseCase.cs

13 lines
520 B
C#
Raw Normal View History

2024-10-28 03:24:11 +00:00
using Demo.Domain.Models;
2024-10-23 19:46:46 +00:00
namespace Demo.Domain.UseCase
{
public interface IPresenceUseCase
{
2024-10-28 03:24:11 +00:00
List<Presence> GetPresenceByGroup(int groupID);
List<Presence> GetPresenceByGroupByTime(int groupID, DateOnly date);
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-10-23 19:46:46 +00:00
}
}