public ProductBuyService(IHttpContextManager httpContextManager, IUnitOfWork unitOfWork, IMapper mapper, IProductSellerService productSellerService)
 {
     _httpContextManager   = httpContextManager;
     _unitOfWork           = unitOfWork;
     _mapper               = mapper;
     _productSellerService = productSellerService;
     _productBuys          = unitOfWork.Set <ProductBuy>();
 }
 public ProductBuyFactory(IProductBuyService productBuyService, IProductSellerService productSellerService, IMapper mapper)
 {
     _productBuyService    = productBuyService;
     _productSellerService = productSellerService;
     _mapper = mapper;
 }
Beispiel #3
0
 public ProductSellerController(IProductSellerService productSellerService, IProductSellerFactory productSellerFactory)
 {
     _productSellerService = productSellerService;
     _productSellerFactory = productSellerFactory;
 }