Beispiel #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;
 }
 public BlogHomeController(IProductService productService, IBlogService blogService,
                           IWebsiteAttributeService websiteAttributeService, IBlogCategoryService blogCategoryService,
                           IStaffService staffService, IProductAttributeMappingService productAttributeMappingService, IVendorService _vendorService
                           )
 {
     this._productService                 = productService;
     this._blogService                    = blogService;
     this._websiteAttributeService        = websiteAttributeService;
     this._blogCategoryService            = blogCategoryService;
     this._vendorService                  = _vendorService;
     this._staffService                   = staffService;
     this._productAttributeMappingService = productAttributeMappingService;
 }
Beispiel #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;
 }
 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;
 }
Beispiel #5
0
 public AdminController(IAccountService _accountService, IProductService _productService, IImageService _imageService,
                        IManufactorService _manufactorService, ICategoryService _categoryService, IAnimeService _animeService, IStatusService _statusService
                        , IBlogService _blogService, IProductTagService _productTagService, ITagService _tagService, IWebsiteAttributeService _websiteAttributeService
                        , IMessageSendingService _messageSendingService, IFAQService _faqService)
 {
     this._accountService          = _accountService;
     this._productService          = _productService;
     this._imageService            = _imageService;
     this._manufactorService       = _manufactorService;
     this._categoryService         = _categoryService;
     this._animeService            = _animeService;
     this._statusService           = _statusService;
     this._blogService             = _blogService;
     this._productTagService       = _productTagService;
     this._tagService              = _tagService;
     this._websiteAttributeService = _websiteAttributeService;
     this._messageSendingService   = _messageSendingService;
     this._faqService              = _faqService;
 }
Beispiel #6
0
 public HomeController(UserManager <User> userManager, IUserService userSerice, IWebsiteAttributeService websiteAttributeService)
 {
     _websiteAttributeService = websiteAttributeService;
     _userManager             = userManager;
     _userService             = userSerice;
 }
Beispiel #7
0
 public WebsiteAttributeController(IWebsiteAttributeService websiteAttributeService)
 {
     _websiteAttributeService = websiteAttributeService;
 }