Demo/Data/Repository/IPresenceRepository.cs

11 lines
357 B
C#
Raw Permalink Normal View History

2024-10-22 18:51:54 +00:00
using Demo.Domain.Models;
namespace Demo.Data.Repository
{
public interface IPresenceRepository
{
List<PresenceLocalEntity> GetAllPresences();
2024-10-23 07:53:19 +00:00
void IsAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid);
2024-10-22 18:51:54 +00:00
List<PresenceLocalEntity> GeneratePresence(List<PresenceLocalEntity> presenceLocalEntities);
}
}