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