using ProjectGSM.Entities; namespace ProjectGSM.Repositories; public interface IClientRepository { IEnumerable ReadClients(); Client ReadClientById(int id); void CreateClient(Client client); void UpdateClient(Client client); void DeleteClient(int id); }