35 lines
724 B
C#
Raw Normal View History

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 void 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)
{
}
}