public ReservationStepDefinitions(ScenarioContext scenarioContext)
 {
     _scenarioContext = scenarioContext;
     _fakeDataLayer   = new FakeDataLayer();
     _target          = new Rental(_fakeDataLayer);
     _vehicules       = new List <Vehicule>();
 }
Exemple #2
0
 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);
 }