示例#1
0
 public PublisherController(IProductService productService, IBlogService blogService,
                            IWebsiteAttributeService websiteAttributeService, IBlogCategoryService blogCategoryService,
                            IStaffService staffService, IProductAttributeMappingService productAttributeMappingService,
                            IProductRelationshipService productRelationshipService, IProductScheduleService productScheduleService,
                            IOrderService orderService, IOrderItemService orderItemService,
                            IOrderAttributeService orderAttributeService, IOrderAttributeMappingService orderAttributeMappingService,
                            IAdService adService, IAdMaterialMappingService adMaterialService, IMaterialService materialService, IDomainService domainService, ICodeService codeService)
 {
     this._productService                 = productService;
     this._blogService                    = blogService;
     this._websiteAttributeService        = websiteAttributeService;
     this._blogCategoryService            = blogCategoryService;
     this._staffService                   = staffService;
     this._productAttributeMappingService = productAttributeMappingService;
     this._productRelationshipService     = productRelationshipService;
     this._productScheduleService         = productScheduleService;
     this._orderService                   = orderService;
     this._orderAttributeService          = orderAttributeService;
     this._orderAttributeMappingService   = orderAttributeMappingService;
     this._adService = adService;
     this._adMaterialMappingService = adMaterialService;
     this._materialService          = materialService;
     this._domainService            = domainService;
     this._codeService = codeService;
 }
示例#2
0
 public AlbumPhotoController(IProductService productService, IProductCategoryService productCategoryService,
                             IProductAttributeService productAttributeService, IProductAttributeMappingService productAttributeMappingService,
                             IPictureService pictureService, IProductPictureMappingService productPictureMappingService,
                             IProductRelationshipService productRelationShipService)
 {
     this._productService                 = productService;
     this._productCategoryService         = productCategoryService;
     this._productAttributeService        = productAttributeService;
     this._productAttributeMappingService = productAttributeMappingService;
     this._pictureService                 = pictureService;
     this._productPictureMappingService   = productPictureMappingService;
     this._productRelationShipService     = productRelationShipService;
 }
示例#3
0
 public HomeController(IProductService productService, IBlogService blogService,
                       IWebsiteAttributeService websiteAttributeService, IBlogCategoryService blogCategoryService,
                       IStaffService staffService, IProductAttributeMappingService productAttributeMappingService,
                       IProductRelationshipService productRelationshipService, IProductCategoryService productcategoryService)
 {
     this._productService                 = productService;
     this._blogService                    = blogService;
     this._websiteAttributeService        = websiteAttributeService;
     this._blogCategoryService            = blogCategoryService;
     this._staffService                   = staffService;
     this._productAttributeMappingService = productAttributeMappingService;
     this._productRelationshipService     = productRelationshipService;
     this._productcategoryService         = productcategoryService;
 }