using Demo.domain.Models; namespace Demo.Data.Repository { public interface IPresenceRepository { List GetPresences(); List GetPresencesByGroup(); List GetPresencesByGroupAndDate(); public List SavePresence(List presenceLocalEntities); void UpdateAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid); } }