12 lines
262 B
C#
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();
|
|||
|
}
|
|||
|
}
|