namespace MedicalDatabaseContracts { public interface IStorage { T Get(long id); List GetAll(); T Create(T entity); T Update(long id, T entity); T Delete(long id); } }