Пример #1
0
 public GalleryController(IUnitOfWork unitOfWork, ICategoryService categoryService,
     IProductService productService, IGalleryService galleryService, IGalleryDetailService galleryDetailService)
 {
     this._unitOfWork = unitOfWork;
     this._categoryService = categoryService;
     this._productService = productService;
     this._galleryService = galleryService;
     this._galleryDetailService = galleryDetailService;
 }
Пример #2
0
 public CategoryController(IUnitOfWork unitOfWork, ICategoryService categoryService,
     IProductService productService, IUserService userService,
     ISettingService settingService, IGalleryService galleryService, IGalleryDetailService galleryDetailService)
 {
     this._unitOfWork = unitOfWork;
     this._categoryService = categoryService;
     this._productService = productService;
     this._userService = userService;
     this._settingService = settingService;
     this._galleryService = galleryService;
     this._galleryDetailService = galleryDetailService;
 }
Пример #3
0
 public SolutionController(IUnitOfWork unitOfWork, ISolutionService solutionService,
     IProductService productService, IUserService userService,
     ISettingService settingService, IGalleryService galleryService, IGalleryDetailService galleryDetailService,
     ISolutionProductService solutionProductService)
 {
     this._unitOfWork = unitOfWork;
     this._solutionService = solutionService;
     this._productService = productService;
     this._userService = userService;
     this._settingService = settingService;
     this._galleryService = galleryService;
     this._galleryDetailService = galleryDetailService;
     this._solutionProductService = solutionProductService;
 }