presence/Demo/Data/Repository/IPresenceRepository.cs

20 lines
505 B
C#
Raw Normal View History

2024-10-23 09:44:48 +00:00

2024-10-25 08:47:11 +00:00
using Demo.Data.RemoteData.RemoteDataBase.DAO;
2024-10-23 09:44:48 +00:00
using Demo.domain.Models;
using Demo.Domain.UseCase;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.Data.Repository
{
public interface IPresenceRepository
{
2024-10-28 12:03:51 +00:00
List<PresenceDao> GetPresenceByDateAndGroup(DateTime date, int groupId);
void SavePresence(List<PresenceDao> presences);
List<PresenceDao> GetPresenceByGroup(int groupId);
2024-10-23 09:44:48 +00:00
}
}