コード例 #1
0
        public ProductPartialController(
            IMemberIntegralService iMemberIntegralService,
            IProductService iProductService,
            ICouponService iCouponService,
            IShopBonusService iShopBonusService,
            IArticleService iArticleService,
            IArticleCategoryService iArticleCategoryService,
            INavigationService iNavigationService,
            IHomeCategoryService iHomeCategoryService,
            IBrandService iBrandService,
            ICategoryService iCategoryService,
            ICustomerService iCustomerService,
            ISlideAdsService iSlideAdsService

            )
        {
            _iMemberIntegralService  = iMemberIntegralService;
            _iProductService         = iProductService;
            _iCouponService          = iCouponService;
            _iShopBonusService       = iShopBonusService;
            _iArticleService         = iArticleService;
            _iArticleCategoryService = iArticleCategoryService;
            _iNavigationService      = iNavigationService;
            _iHomeCategoryService    = iHomeCategoryService;
            _iBrandService           = iBrandService;
            _iCategoryService        = iCategoryService;
            _iCustomerService        = iCustomerService;
            _iSlideAdsService        = iSlideAdsService;
        }
コード例 #2
0
 public PageSettingsController(
     ISiteSettingService iSiteSettingService,
     ISlideAdsService iSlideAdsService,
     IBrandService iBrandService,
     ITypeService iTypeService,
     IHomeCategoryService iHomeCategoryService,
     ICategoryService iCategoryService,
     IFloorService iFloorService
     )
 {
     _iSiteSettingService  = iSiteSettingService;
     _iSlideAdsService     = iSlideAdsService;
     _iBrandService        = iBrandService;
     _iTypeService         = iTypeService;
     _iHomeCategoryService = iHomeCategoryService;
     _iCategoryService     = iCategoryService;
     _iFloorService        = iFloorService;
 }