public RideService(CarPoolingContext context, IBookingService bookingService)
        {
            this.Db = context;

            this.BookingService = bookingService;
        }
 public BookingService(CarPoolingContext context)
 {
     this.Db = context;
 }
示例#3
0
 public UserService(CarPoolingContext context, IOptions <AppSettings> appSettings)
 {
     this.Db      = context;
     _appSettings = appSettings.Value;
 }
示例#4
0
 public CarService(CarPoolingContext context)
 {
     this.Db = context;
 }