using ProjectGSM.Entities; namespace ProjectGSM.Repositories; public interface IAdvocateRepository { IEnumerable ReadAdvocates(); Advocate ReadAdvocateById(int id); void CreateAdvocate(Advocate advocate); void UpdateAdvocate(Advocate advocate); void DeleteAdvocate(int id); }