PIBD14-Boyko-M.S.-GSM-Autot.../ProjectGSM/Repositories/IClientRepository.cs
2024-11-05 03:59:13 +04:00

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);
}