presence/Demo/Data/Repository/IPresenceRepository.cs

20 lines
483 B
C#
Raw Normal View History

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
{
List<PresenceLocalEntity> GetPresenceByDateAndGroup(DateTime date, int groupId);
void SavePresence(List<PresenceLocalEntity> presences);
2024-10-24 08:39:55 +00:00
List<PresenceLocalEntity> GetPresenceByGroup(int groupId);
2024-10-23 09:44:48 +00:00
}
}