21 lines
520 B
C#
21 lines
520 B
C#
|
using ProjectGSM.Entities;
|
|||
|
|
|||
|
namespace ProjectGSM.Repositories.Implementations;
|
|||
|
|
|||
|
public class ClientRepository : IClientRepository
|
|||
|
{
|
|||
|
public IEnumerable<Client> ReadClients()
|
|||
|
{
|
|||
|
return [];}
|
|||
|
|
|||
|
public Client ReadClientById(int id)
|
|||
|
{
|
|||
|
return Client.CreateEntity(0, String.Empty, false, DateTime.UtcNow, String.Empty, String.Empty, String.Empty);
|
|||
|
}
|
|||
|
|
|||
|
public void CreateClient(Client client) { }
|
|||
|
|
|||
|
public void UpdateClient(Client client) { }
|
|||
|
|
|||
|
public void DeleteClient(int id) { }
|
|||
|
}
|