ISEbd-22_Rozhkov.I.E._Simple/GasStation/Repositories/Implementations/GasmanRepository.cs
2024-11-13 23:20:06 +04:00

29 lines
497 B
C#

using GasStation.Entities;
namespace GasStation.Repositories.Implementations;
public class GasmanRepository : IGasmanRepository
{
public void CreateGasman(Gasman gasman)
{
}
public void DeleteGasman(int id)
{
}
public Gasman ReadGasmanByID(int id)
{
return Gasman.CreateGasman(0, string.Empty, string.Empty);
}
public IEnumerable<Gasman> ReadGasman()
{
return [];
}
public void UpdateGasman(Gasman gasman)
{
}
}