public when_getting_car_information()
 {
     _request = LaceRequestCarInformationRequestBuilder.ForCarId_107483_ButNoVin();
     _repository = new FakeCarInfoRepository();
     _vin12Repository = new FakeVin12CarInfoRepository(_request.Vin);
     _getCarInformation = new CarInformationQuery(_repository);
 }
コード例 #2
0
 public IRetrieveCarInformation SetupDataSources()
 {
     _getCarInformation = new CarInformationQuery(_repository);
     return this;
 }