presence/data/Repository/IPresenceRepository.cs

12 lines
388 B
C#
Raw Normal View History

2024-11-01 19:07:13 +00:00
using Demo.Domain.Models;
namespace Demo.Data.Repository
{
public interface IPresenceRepository
{
List<PresenceLocalEntity> GetAllPresences();
void IsAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid);
List<PresenceLocalEntity> GeneratePresence(List<PresenceLocalEntity> presenceLocalEntities);
2024-11-08 17:42:34 +00:00
bool DeletePresence();
2024-11-01 19:07:13 +00:00
}
}