using System.Collections.Generic; namespace skydiveLogs_api.Data.Interface { public interface IRepository { IEnumerable GetAll(); T GetById(int id); } }