public FixPriceMessageReceiver(ISender sender, IStateManager stateManage, IBucketExtension bucketExtension)
 {
     _sender            = sender;
     _stateManager      = stateManage;
     _bucketExtension   = bucketExtension;
     _gasStationService = new GasStationService(bucketExtension);
 }
Ejemplo n.º 2
0
 public RefuelsController(IRefuelService refuelService, IGasStationService gasStationService,
                          IDriverService driverService, IVehicleService vehicleService)
 {
     _refuelService     = refuelService;
     _gasStationService = gasStationService;
     _driverService     = driverService;
     _vehicleService    = vehicleService;
 }
 public LocationMessageReceiver(ISender sender, IBucketExtension bucketExtension)
 {
     _sender            = sender;
     _gasStationService = new GasStationService(bucketExtension);
 }
Ejemplo n.º 4
0
 public HomeController(IGasStationService gasStationService, IFuelTypeService fuelTypeService)
 {
     _gasStationService = gasStationService;
     _fuelTypeService   = fuelTypeService;
 }
Ejemplo n.º 5
0
 public GasStationController(IGasStationService gasStationService)
 {
     this.gasStationService = gasStationService;
 }