public VehicleController(IVehicleServices vehicleServices,
                          IVehicleBrandServices brandServices,
                          IFuelServices fuelServices)
 {
     _vehicleServices = vehicleServices;
     _brandServices   = brandServices;
     _fuelServices    = fuelServices;
 }
Exemplo n.º 2
0
 public VehicleBrandController(IVehicleBrandServices brandServices)
 {
     _brandServices = brandServices;
 }