xxxproject/Demo/Data/Repository/IPresenceRepository.cs

12 lines
262 B
C#
Raw Normal View History

2024-10-30 09:11:19 +00:00
using Demo.Data.Entity;
using System.Collections.Generic;
namespace Demo.Data.Repository
{
public interface IPresenceRepository
{
bool AddPresence(PresenceLocalEntity newPresence);
List<PresenceLocalEntity> GetAllPresences();
}
}