ПИбд-23 Ладягин П.Д. Первая л.р. #1

Open
F1rsTTeaM wants to merge 20 commits from LabWork01 into main
2 changed files with 2 additions and 6 deletions
Showing only changes of commit d88eccb219 - Show all commits

View File

@ -4,9 +4,7 @@ namespace FuelAndLubricants.Repositories;
public interface IRefillRepository
{
IEnumerable<Refill> ReadRefills();
Trip ReadRefillByID(int id);
IEnumerable<Refill> ReadRefills(DateTime? dateFrom = null, DateTime? dateTo = null, int? fuelId = null, int? carId = null);
void CreateRefill(Refill refill);
}

View File

@ -4,9 +4,7 @@ namespace FuelAndLubricants.Repositories;
public interface ITripRepository
{
IEnumerable<Trip> ReadTrips();
Trip ReadTripByID(int id);
IEnumerable<Trip> ReadTrips(DateTime? dateFrom = null, DateTime? dateTo = null, int? carId = null, int? driverId = null, int? routeId = null);
void CreateTrip(Trip trip);
}