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