Demo/Data/Repository/IPresenceRepository.cs

13 lines
479 B
C#
Raw Normal View History

2024-10-23 19:46:46 +00:00
using Demo.domain.Models;
namespace Demo.Data.Repository
{
public interface IPresenceRepository
{
List<PresenceLocalEntity> GetPresences();
List<PresenceLocalEntity> GetPresencesByGroup();
List<PresenceLocalEntity> GetPresencesByGroupAndDate();
2024-10-24 20:41:31 +00:00
List<PresenceLocalEntity> GeneratePresence(List<PresenceLocalEntity> presenceLocalEntities);
2024-10-23 19:46:46 +00:00
void UpdateAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid);
}
}