12 lines
286 B
C#
12 lines
286 B
C#
|
using ProjectGSM.Entities;
|
|||
|
|
|||
|
namespace ProjectGSM.Repositories;
|
|||
|
|
|||
|
public interface IClientRepository
|
|||
|
{
|
|||
|
IEnumerable<Client> ReadClients();
|
|||
|
Client ReadClientById(int id);
|
|||
|
void CreateClient(Client client);
|
|||
|
void UpdateClient(Client client);
|
|||
|
void DeleteClient(int id);
|
|||
|
}
|