Exemplo n.º 1
0
 public CartService(ICartRepository cartRepository, IProductPriceService productPriceService,
                    IProductCartService productCartService)
 {
     _cartRepository      = cartRepository;
     _productPriceService = productPriceService;
     _productCartService  = productCartService;
 }
Exemplo n.º 2
0
 public ProductCartController(IProductCartService pservice)
 {
     service = pservice;
 }
Exemplo n.º 3
0
 public ProductCartAppService(IMapper mapper, IProductCartRepository productCartRepository, IProductCartService productCartService)
 {
     _mapper = mapper;
     _productCartRepository = productCartRepository;
     _productCartService    = productCartService;
 }