2024-11-05 23:39:22 +04:00
|
|
|
|
using ProjectGarage.Entities;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ProjectGarage.Repositories;
|
|
|
|
|
|
2024-11-20 14:50:06 +04:00
|
|
|
|
public interface IReplenishmentRepository
|
2024-11-05 23:39:22 +04:00
|
|
|
|
{
|
|
|
|
|
IEnumerable<FuelReplenishment> ReadFuelReplenishment(DateTime? dateForm = null, DateTime? dateTo = null, int? fuelId = null,
|
|
|
|
|
int? driverId = null, int? routeId = null);
|
|
|
|
|
void CreateFuelReplenishment(FuelReplenishment fuelReplenishment);
|
|
|
|
|
|
|
|
|
|
void DeleteFuelReplenishment(int id);
|
|
|
|
|
}
|