public TypeNotifyController(IProductService productService, IProductCategoryService productCategoryService,
                             IProductAttributeService productAttributeService, IProductAttributeMappingService productAttributeMappingService,
                             IPictureService pictureService, IProductPictureMappingService productPictureMappingService, ITypeNotifyService _TypeNotifyService
                             )
 {
     this._productService                 = productService;
     this._productCategoryService         = productCategoryService;
     this._productAttributeService        = productAttributeService;
     this._productAttributeMappingService = productAttributeMappingService;
     this._pictureService                 = pictureService;
     this._productPictureMappingService   = productPictureMappingService;
     this._TypeNotifyService              = _TypeNotifyService;
 }
 public HomeController(IPictureService _pictureService, IProductService productService, IBlogService blogService,
                       IWebsiteAttributeService websiteAttributeService, IBlogCategoryService blogCategoryService,
                       IStaffService staffService, IProductAttributeMappingService productAttributeMappingService, IVendorService _vendorService
                       , IOrderService _orderService, ITypeNotifyService _typeNotifyService, IProductCategoryService _productCategoryService)
 {
     this._productCategoryService         = _productCategoryService;
     this._productService                 = productService;
     this._blogService                    = blogService;
     this._websiteAttributeService        = websiteAttributeService;
     this._blogCategoryService            = blogCategoryService;
     this._vendorService                  = _vendorService;
     this._staffService                   = staffService;
     this._productAttributeMappingService = productAttributeMappingService;
     this._orderService                   = _orderService;
     this._typeNotifyService              = _typeNotifyService;
     this._pictureService                 = _pictureService;
 }