17 lines
417 B
C#
17 lines
417 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ProjectOpticsSalon.Entites;
|
|
|
|
namespace ProjectOpticsSalon.Repositories;
|
|
|
|
public interface IClientRepository
|
|
{
|
|
IEnumerable<Client> ReadClients();
|
|
Client ReadClientById(int id);
|
|
void CreateClient(Client client);
|
|
void UpdateClient(Client client);
|
|
void DeleteClient(int id);
|
|
} |