Exemple #1
0
 public IndexModel(ICarRentInformationService carRentInformationService,
                   IManufacturerService manufacturerService,
                   IModelService modelService,
                   IRentStateService rentStateService)
 {
     _manufacturerService       = manufacturerService;
     _modelService              = modelService;
     _rentStateService          = rentStateService;
     _carRentInformationService = carRentInformationService;
 }
Exemple #2
0
 public SearchModel(ICarRentInformationService carRentInformationService,
                    IManufacturerService manufacturerService,
                    IModelService modelService,
                    IRentStateService rentStateService,
                    IVehicleTypeService vehicleTypeService)
 {
     _manufacturerService       = manufacturerService;
     _modelService              = modelService;
     _rentStateService          = rentStateService;
     _vehicleTypeService        = vehicleTypeService;
     _carRentInformationService = carRentInformationService;
 }