Пример #1
0
 public DriverService(Taxi24DbContext context)
 {
     this._db = context;
 }
Пример #2
0
 public TripsService(Taxi24DbContext context)
 {
     this._db = context;
 }
Пример #3
0
 public PassengersController(Taxi24DbContext context)
 {
     this.passengersService = new PassengersService(context);
 }
Пример #4
0
 public DriversController(Taxi24DbContext context)
 {
     this.driverService = new DriverService(context);
 }
Пример #5
0
 public TripsController(Taxi24DbContext context)
 {
     this.tripsService = new TripsService(context);
 }
Пример #6
0
 public PassengersService(Taxi24DbContext context)
 {
     this._db = context;
 }