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