using System.Collections.Generic; namespace skydiveLogs_api.DomainService.Repositories { public interface IRepository { #region Public Methods int Add(T newEntity); IEnumerable GetAll(); T GetById(int id); int GetCount(); bool Update(T updated); #endregion Public Methods } }