35 lines
725 B
C#
35 lines
725 B
C#
using ProjectGarage.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectGarage.Repositories.Implementations;
|
|
|
|
public class RouteRepository : IRouteRepository
|
|
{
|
|
public void CreateFuelReplenishment(FuelReplenishment fuelReplenishment)
|
|
{
|
|
}
|
|
|
|
public void CreateRoute(Route route)
|
|
{
|
|
}
|
|
|
|
public void DeleteRoute(int id)
|
|
{
|
|
}
|
|
|
|
public Route ReadRouteByID(int id) => Route.CreateRoute(0, string.Empty, string.Empty, 0);
|
|
|
|
public IEnumerable<Route> ReadRoute(string? startPoint = null, string? finalPoint = null)
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public void UpdateRoute(Route route)
|
|
{
|
|
}
|
|
}
|