public RideService(CarPoolingContext context, IBookingService bookingService) { this.Db = context; this.BookingService = bookingService; }
public BookingService(CarPoolingContext context) { this.Db = context; }
public UserService(CarPoolingContext context, IOptions <AppSettings> appSettings) { this.Db = context; _appSettings = appSettings.Value; }
public CarService(CarPoolingContext context) { this.Db = context; }