30 lines
499 B
C#
30 lines
499 B
C#
|
using ProjectFuel.Entities;
|
|||
|
using ProjectFuel.Repositories;
|
|||
|
|
|||
|
namespace ProjectFuel.Repositories.Implementations;
|
|||
|
|
|||
|
public class FuelRepository : IFuelRepository
|
|||
|
{
|
|||
|
public void CreateFuel(Fuel fuel)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void DeleteFuel(int id)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public Fuel ReadFuelByID(int id)
|
|||
|
{
|
|||
|
return Fuel.CreateEntity(0, 0, 0, 0);
|
|||
|
}
|
|||
|
|
|||
|
public IEnumerable<Fuel> ReadFuels()
|
|||
|
{
|
|||
|
return new List<Fuel>();
|
|||
|
}
|
|||
|
|
|||
|
public void UpdateFuel(Fuel fuel)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|