12 lines
287 B
C#
Raw Normal View History

2024-12-23 11:33:05 +04:00
using ProjectFuel.Entities;
2024-12-24 22:02:09 +04:00
2024-12-23 11:33:05 +04:00
namespace ProjectFuel.Repositories;
public interface ITripRepository
{
IEnumerable<Trip> ReadTrips(DateTime? dateFrom = null, DateTime? dateTo = null, int? carId = null, int? driverId = null, int? routeId = null);
void CreateTrip(Trip trip);
}