Beispiel #1
0
 public ProductController(IProductService productService,
                          IProductCategoryService productCategoryService,
                          IManufactorService manufactorService,
                          IBrandService brandService, IExportManagerService exportManager,
                          IImportManagerService importManager)
 {
     _manufactorService      = manufactorService;
     _importManager          = importManager;
     _exportManager          = exportManager;
     _productService         = productService;
     _brandService           = brandService;
     _productCategoryService = productCategoryService;
 }
Beispiel #2
0
 public CartController(IAccountService _accountService, IProductService _productService, IImageService _imageService,
                       IManufactorService _manufactorService, ICategoryService _categoryService, IAnimeService _animeService, ITagService _tagService, IOrderProductService _orderProductService,
                       IOrderService _orderService)
 {
     this._accountService      = _accountService;
     this._productService      = _productService;
     this._imageService        = _imageService;
     this._manufactorService   = _manufactorService;
     this._categoryService     = _categoryService;
     this._animeService        = _animeService;
     this._orderProductService = _orderProductService;
     this._orderService        = _orderService;
 }
Beispiel #3
0
 public ProductController(IErrorService errorService,
                          IManufactorService manufactorService,
                          IProductService productService, IBrandService brandService,
                          IExportManagerService exportManager,
                          IUnitOfWork unitOfWork,
                          IImportManagerService importManager)
     : base(errorService)
 {
     _manufactorService = manufactorService;
     _productService    = productService;
     _brandService      = brandService;
     _exportManager     = exportManager;
     _importManager     = importManager;
     _unitOfWork        = unitOfWork;
 }
Beispiel #4
0
 public ProductController(IProductService _productService, ITagService _tagService,
                          ICategoryService _categoryService, IProductTagService _productTagService,
                          IManufactorService _manufactorService, IStatusService _statusService, IImageService _imageService,
                          ICommentService _commentService, IAccountService _accountService, INotificationService _notificationService
                          , IWishListService _wishListService)
 {
     this._productService      = _productService;
     this._tagService          = _tagService;
     this._categoryService     = _categoryService;
     this._productTagService   = _productTagService;
     this._manufactorService   = _manufactorService;
     this._statusService       = _statusService;
     this._imageService        = _imageService;
     this._commentService      = _commentService;
     this._accountService      = _accountService;
     this._notificationService = _notificationService;
     this._wishListService     = _wishListService;
 }
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 ManufactorController(IErrorService errorService, IManufactorService manuFactorService) : base(errorService)
 {
     _manuFactorService = manuFactorService;
 }