Ejemplo n.º 1
0
 public RideNowController(IDriverService driverService, ICarTypeService carTypeService, IUserService userService, IRideDetailsService rideDetailsService)
 {
     this.driverService = driverService;
     this.carTypeService = carTypeService;
     this.userService = userService;
     this.rideDetailsService = rideDetailsService;
 }
Ejemplo n.º 2
0
 public CarBrandService(
     ICatalogUoW catalogUow,
     ICountryService countryService,
     ICarTypeService carTypeService)
     : base(catalogUow)
 {
     this.carTypeService = carTypeService;
     this.countryService = countryService;
 }
Ejemplo n.º 3
0
 public CarTypeController(ICarTypeService carTypeService)
 {
     _carTypeService = carTypeService;
 }
Ejemplo n.º 4
0
 public CarTypeController(ICarTypeService carTypeService)
 {
     this.carTypeService = carTypeService;
 }
 public CabDurationController(IDriverService driverService, ICarTypeService carTypeService)
 {
     this.driverService = driverService;
     this.carTypeService = carTypeService;
 }
Ejemplo n.º 6
0
 public DriverController(IDriverService driverService, ICarTypeService carTypeService)
 {
     this.driverService = driverService;
     this.carTypeService = carTypeService;
 }