Ejemplo n.º 1
0
 public Buscarvehiculos(IFindVehicle caller)
 {
     
     InitializeComponent();
     fillGridView();
     _caller = caller;
 }
Ejemplo n.º 2
0
 public Engine(ISetupPark setupPark, IPark park, IExit exit, IFindVehicle findVehicle, IVehiclesByOwner vehiclesByOwner, IStatus status)
 {
     this.setupPark = setupPark;
     this.park = park;
     this.exit = exit;
     this.findVehicle = findVehicle;
     this.vehiclesByOwner = vehiclesByOwner;
     this.status = status;
 }
 public DakarRallySimulationApp(ICreateRally createRallyService, IAddVehicleToRally addVehicleToRallyService, IRemoveVehicleFromRally removeVehicleFromRallyService, IStartRally startRallyService, IProvideVehicleStatistics vehicleStatisticsService, IProvideRallyStatusInfo getRallyStatusInfoService, IProvideLeaderboard leaderboardService, IFindVehicle findVehicleService)
 {
     _createRallyService            = createRallyService;
     _addVehicleToRallyService      = addVehicleToRallyService;
     _removeVehicleFromRallyService = removeVehicleFromRallyService;
     _startRallyService             = startRallyService;
     _vehicleStatisticsService      = vehicleStatisticsService;
     _getRallyStatusInfoService     = getRallyStatusInfoService;
     _leaderboardService            = leaderboardService;
     _findVehicleService            = findVehicleService;
 }
Ejemplo n.º 4
0
 public Buscarvehiculos(IFindVehicle caller, string idvehicle) : this(caller)
 {
     InitializeComponent();
     _idvehicle = idvehicle;
 }