29 lines
497 B
C#
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)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|