Пример #1
0
 public SellProductService(IProductSellRepository repository, IProductRepository productRepository, IMapper mapper)
 {
     _repository        = repository;
     _productRepository = productRepository;
     _mapper            = mapper;
 }
Пример #2
0
 public ProductSellController(IProductSellRepository repository)
 {
     this._repository = repository;
 }