Beispiel #1
0
 public ConstructionCapitalController(ICustomerActivityService customerActivityService,
                                      ILocalizationService localizationService,
                                      ILocalizedEntityService localizedEntityService,
                                      IPermissionService permissionService,
                                      ISettingService settingService,
                                      IConstructionModelFactory constructionModelFactory,
                                      IConstructionCapitalService constructionCapitalService)
 {
     this._constructionModelFactory   = constructionModelFactory;
     this._customerActivityService    = customerActivityService;
     this._localizationService        = localizationService;
     this._localizedEntityService     = localizedEntityService;
     this._permissionService          = permissionService;
     this._constructionCapitalService = constructionCapitalService;
 }
 public ConstructionModelFactory(IConstructionTypeService constructionTypeService,
                                 ICountryService countryService,
                                 ILocalizationService localizationService,
                                 IStateProvinceService stateProvinceService,
                                 IStaticCacheManager cacheManager,
                                 IWorkContext workContext,
                                 IConstructionCapitalService constructionCapitalService,
                                 IConstructionService constructionService)
 {
     this._constructionTypeService    = constructionTypeService;
     this._constructionCapitalService = constructionCapitalService;
     this._constructionService        = constructionService;
     this._countryService             = countryService;
     this._localizationService        = localizationService;
     this._stateProvinceService       = stateProvinceService;
     this._cacheManager = cacheManager;
     this._workContext  = workContext;
 }