using Demo.Domain.Models; namespace Demo.Data.Repository { public interface IPresenceRepository { List GetAllPresences(); void IsAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid); List GeneratePresence(List presenceLocalEntities); } }