namespace MBDEVproAPI.Repository.Interfaces { public interface IBaseRepository { /// /// /// /// void Add(T obj); /// /// /// /// void Remove(int id, T obj); /// /// /// /// /// T GetByID(int? id); /// /// /// /// /// IEnumerable GetAll(); /// /// /// void SaveChanges(); } }