Demo/Domain/UseCase/IPresenceUseCase.cs

11 lines
335 B
C#
Raw Normal View History

2024-10-22 18:51:54 +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);
bool GeneratePresence(int firstLesson, int lastLesson, int groupID, DateOnly date);
}
}