31 lines
564 B
C#
31 lines
564 B
C#
|
using ProjectFuel.Entities;
|
|||
|
using ProjectFuel.Entities;
|
|||
|
using ProjectFuel.Repositories;
|
|||
|
|
|||
|
namespace ProjectFuel.Repositories.Implementations;
|
|||
|
|
|||
|
public class RouteRepository : IRouteRepository
|
|||
|
{
|
|||
|
public void CreateRoute(Route route)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void DeleteRoute(int id)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public Route ReadRouteByID(int id)
|
|||
|
{
|
|||
|
return Route.CreateEntity(0, string.Empty, string.Empty, 0);
|
|||
|
}
|
|||
|
|
|||
|
public IEnumerable<Route> ReadRoutes()
|
|||
|
{
|
|||
|
return new List<Route>();
|
|||
|
}
|
|||
|
|
|||
|
public void UpdateRoute(Route route)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|