Exemplo n.º 1
0
 public Product(IAsyncPruductRepo RepoPrc_, IMapper mapper, IAsyncCategoriRepo categoriRepo_, IAsyncProductInfo ProductInfoREPO_)
 {
     RepoPrc         = RepoPrc_;
     categoriRepo    = categoriRepo_;
     ProductInfoREPO = ProductInfoREPO_;
     _mapper         = mapper;
 }
Exemplo n.º 2
0
 public ProductController(IAsyncCategoriRepo categoryRepository, IAsyncPruductRepo productRepository, IAsyncImageValue iimgeProduct_, IAsyncProductInfo ProductInfo_)
 {
     this.categoryRepository    = categoryRepository;
     this.productRepository     = productRepository;
     this.iimgeProduct          = iimgeProduct_;
     this.ProductInfoRepository = ProductInfo_;
 }
Exemplo n.º 3
0
 public ProductController(IAsyncPruductRepo RepoPrc_, IMapper mapper,
                          IAsyncCategoriRepo categoriRepo_, IAsyncProductInfo ProductInfoREPO_,
                          ILogDetails LogDetails)
 {
     RepoPrc         = RepoPrc_;
     categoriRepo    = categoriRepo_;
     ProductInfoREPO = ProductInfoREPO_;
     _mapper         = mapper;
     _LogDetails     = LogDetails;
 }