public ProductBuyController(IProductBuyService productBuyService, IProductBuyFactory productBuyFactory) { _productBuyService = productBuyService; _productBuyFactory = productBuyFactory; }
public ProductBuyFactory(IProductBuyService productBuyService, IProductSellerService productSellerService, IMapper mapper) { _productBuyService = productBuyService; _productSellerService = productSellerService; _mapper = mapper; }