public Buscarvehiculos(IFindVehicle caller) { InitializeComponent(); fillGridView(); _caller = caller; }
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; }
public Buscarvehiculos(IFindVehicle caller, string idvehicle) : this(caller) { InitializeComponent(); _idvehicle = idvehicle; }