public CarrinhoController(ICarrinhoAppService carrinhoAppService, IProdutoAppService produtoAppService)
 {
     this.carrinhoAppService = carrinhoAppService;
     this.produtoAppService = produtoAppService;
 }
Esempio n. 2
0
 public CarrinhoController(ICarrinhoAppService carrinhoApp)
 {
     this.carrinhoApp = carrinhoApp;
 }