예제 #1
0
 public ManageProductController(IProductManagerService _productManagerService, IProductService _productService, IManageDesigner _DesignerService, IManageAttributeGroup _attributeGroupService, IManageSizeAttributes _manageSizeAttributesService, ICategoryService categoryService)
 {
     this._productManagerService       = _productManagerService;
     this._productService              = _productService;
     this._DesignerService             = _DesignerService;
     this._attributeGroupService       = _attributeGroupService;
     this._manageSizeAttributesService = _manageSizeAttributesService;
     this._categoryService             = categoryService;
 }
예제 #2
0
 public ManageOptionController(IProductManagerService productManagerService)
 {
     _productManagerService = productManagerService;
 }
 public AdministrationController(IProductManagerService productManagerService)
 {
     _productManagerService = productManagerService;
 }
예제 #4
0
 public ManageSizeAttributes(IUnitOfWork _unitOfWork, IProductManagerService _productManagerService)
 {
     this._unitOfWork            = _unitOfWork;
     this._productManagerService = _productManagerService;
 }
예제 #5
0
 public ManageSizeAttributesController(IManageSizeAttributes _manageSizeAttributeService, IProductManagerService _manageProductService)
 {
     this._manageSizeAttributeService = _manageSizeAttributeService;
     this._manageProductService       = _manageProductService;
 }