Ejemplo n.º 1
0
 public ProductImageController(
     IProductImageService productImageService,
     IProductImageComplexService productImageComplexService)
 {
     this._ProductImageService        = productImageService;
     this._ProductImageComplexService = productImageComplexService;
 }
Ejemplo n.º 2
0
 public ProductController(IProductService productService,
                          IGlobalService globalService,
                          IProductImageComplexService image,
                          IStockQueryService stock
                          )
 {
     this._ProductService = productService;
     this._GlobalService  = globalService;
     this._ImageService   = image;
     this._Stock          = stock;
 }