xxxproject/Demo/Data/Repository/IPresenceRepository.cs
Class_Student 6b9b5a424f init
2024-10-30 12:11:19 +03:00

12 lines
262 B
C#

using Demo.Data.Entity;
using System.Collections.Generic;
namespace Demo.Data.Repository
{
public interface IPresenceRepository
{
bool AddPresence(PresenceLocalEntity newPresence);
List<PresenceLocalEntity> GetAllPresences();
}
}