Esempio n. 1
0
 public ProductBuyController(IProductBuyService productBuyService, IProductBuyFactory productBuyFactory)
 {
     _productBuyService = productBuyService;
     _productBuyFactory = productBuyFactory;
 }
Esempio n. 2
0
 public ProductBuyFactory(IProductBuyService productBuyService, IProductSellerService productSellerService, IMapper mapper)
 {
     _productBuyService    = productBuyService;
     _productSellerService = productSellerService;
     _mapper = mapper;
 }