public ReservationStepDefinitions(ScenarioContext scenarioContext) { _scenarioContext = scenarioContext; _fakeDataLayer = new FakeDataLayer(); _target = new Rental(_fakeDataLayer); _vehicules = new List <Vehicule>(); }
public LocationStepDefinitions(ScenarioContext scenarioContext) { _scenarioContext = scenarioContext; this._fakeDataLayer = new FakeDataLayer(); this._location = new Location(this._fakeDataLayer); this._estInscrit = false; this._immatDisponibles = new List <String>(); }
public LocationStepDefinitions(ScenarioContext scenarioContext) { _scenarioContext = scenarioContext; this._fakeDataLayer = new FakeDataLayer(); this._target = new Location(this._fakeDataLayer); }