PIBD14-Boyko-M.S.-GSM-Autot.../ProjectGSM/Repositories/IClientRepository.cs

12 lines
286 B
C#
Raw Normal View History

2024-11-05 03:59:13 +04:00
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);
}