31 lines
540 B
C#
31 lines
540 B
C#
using ProjectFuel.Entities;
|
|
using ProjectFuel.Entities;
|
|
using ProjectFuel.Repositories;
|
|
|
|
namespace ProjectFuel.Repositories.Implementations;
|
|
|
|
public class CarRepository : ICarRepository
|
|
{
|
|
public void CreateCar(Car car)
|
|
{
|
|
}
|
|
|
|
public void DeleteCar(int id)
|
|
{
|
|
}
|
|
|
|
public Car ReadCarByID(int id)
|
|
{
|
|
return Car.CreateEntity(0, string.Empty, string.Empty, 0, 0, 0);
|
|
}
|
|
|
|
public IEnumerable<Car> ReadCars()
|
|
{
|
|
return new List<Car>();
|
|
}
|
|
|
|
public void UpdateCar(Car car)
|
|
{
|
|
}
|
|
}
|