11 lines
383 B
C#
11 lines
383 B
C#
|
using data.RemoteData.RemoteDatabase.DAO;
|
||
|
|
||
|
namespace data.Repository;
|
||
|
|
||
|
public interface IPresenceRepository
|
||
|
{
|
||
|
public DateOnly? GetLastDateByGroupId(int groupId);
|
||
|
public void SavePresence(List<PresenceDAO> presences);
|
||
|
public List<PresenceDAO> ShowPresenceForDateAndGroup(DateOnly date, int groupId);
|
||
|
public List<PresenceDAO> GetForAbsent(DateOnly date, int groupId);
|
||
|
}
|