namespace ConstructorApp.BusinessLayer.Abstract { public interface IGenericService where T : class { void TAdd(T entity); void TDelete(T entity); void TUpdate(T entity); T TGetByID(int id); List TGetListAll(); } }