using System.Collections.Generic; namespace LaDOSE.Business.Interface { public interface IBaseService where T : class { IEnumerable GetAll(); T GetById(int id); T Create(T entity); bool Update(T entity); bool Delete(int id); } }