31 lines
579 B
C#
31 lines
579 B
C#
using ProjectFuel.Entities;
|
|
using ProjectFuel.Entities;
|
|
using ProjectFuel.Repositories;
|
|
|
|
namespace ProjectFuel.Repositories.Implementations;
|
|
|
|
public class DriverRepository : IDriverRepository
|
|
{
|
|
public void CreateDriver(Driver driver)
|
|
{
|
|
}
|
|
|
|
public void DeleteDriver(int id)
|
|
{
|
|
}
|
|
|
|
public Driver ReadDriverByID(int id)
|
|
{
|
|
return Driver.CreateEntity(0, string.Empty, string.Empty, 0);
|
|
}
|
|
|
|
public IEnumerable<Driver> ReadDrivers()
|
|
{
|
|
return new List<Driver>();
|
|
}
|
|
|
|
public void UpdateDriver(Driver driver)
|
|
{
|
|
}
|
|
}
|