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