public InterfaceController(IControleAcessoAppService controleacessoAppService, IEmpresaAppService empresaAppService, ILojaAppService lojaAppService, IConfiguracaoAppService configuracaoAppService, IProdutoAppService produtoAppService)
 {
     _controleacessoAppService = controleacessoAppService;
     _empresaAppService = empresaAppService;
     _lojaAppService = lojaAppService;
     _configuracaoAppService = configuracaoAppService;
     _produtoAppService = produtoAppService;
 }
Exemplo n.º 2
0
 public ProdutoController(IProdutoAppService produtoAppService,
                         ICategoriaProdutoAppService categoriaProdutoAppService,
                         IMarcaProdutoAppService marcaProdutoAppService)
 {
     _produtoAppService = produtoAppService;
     _categoriaProdutoAppService = categoriaProdutoAppService;
     _marcaProdutoAppService = marcaProdutoAppService;
 }
 public ComissoesController(IControleAcessoAppService controleacessoAppService, IColaboradorAppService colaboradorAppService, ILojaAppService lojaAppService, IProdutoAppService produtoAppService, ITipoBusinessAppService tipobusinessAppService, ICargoAppService cargoAppService, IAeroportoAppService aeroportoAppService, IProdutoSubGrupoDufryAppService produtoSubGrupoDufryAppService, IProdutoCategoriaAppService produtoCategoriaAppService, IProdutoGrupoDufryAppService produtoGrupoDufryAppService)
 {
     _controleacessoAppService = controleacessoAppService;
     _colaboradorAppService = colaboradorAppService;
     _lojaAppService = lojaAppService;
     _produtoAppService = produtoAppService;
     _tipobusinessAppService = tipobusinessAppService;
     _cargoAppService = cargoAppService;
     _aeroportoAppService = aeroportoAppService;
     _produtoSubGrupoDufryAppService = produtoSubGrupoDufryAppService;
     _produtoCategoriaAppService = produtoCategoriaAppService;
     _produtoGrupoDufryAppService = produtoGrupoDufryAppService;
 }
Exemplo n.º 4
0
 public AdminProdutosController(IProdutoAppService produtoAppService)
 {
     _produtoAppService = produtoAppService;
 }
Exemplo n.º 5
0
 public ClientesController(IClienteAppService clienteApp, IProdutoAppService produtoApp)
 {
     _clienteApp = clienteApp;
     _produtoApp = produtoApp;
 }
Exemplo n.º 6
0
 public ProdutoController(IProdutoAppService produtoApp)
 {
     _produtoApp = produtoApp;
 }
 public ProdutoController(IProdutoAppService produtoAppService)
 {
     this.produtoAppService = produtoAppService;
 }
Exemplo n.º 8
0
 public ItensPedidoController(IItensPedidoAppService iped_app, IProdutoAppService iprod_app)
 {
     IpedApp = iped_app;
     prodApp = iprod_app;
 }
 public ProdutosController(IProdutoAppService produtoApp, IClienteAppService clienteApp)
 {
     _produtoApp = produtoApp;
     _clienteApp = clienteApp;
 }
Exemplo n.º 10
0
 public CarrinhoController(IProdutoAppService produtoAppService)
 {
     _produtoAppService = produtoAppService;
 }
Exemplo n.º 11
0
 public VendasController(IVendasAppService vendaApp, IClienteAppService clienteApp, IColaboradorAppService colaboradorApp, IProdutoAppService produtoApp)
 {
     _vendaApp       = vendaApp;
     _clienteApp     = clienteApp;
     _colaboradorApp = colaboradorApp;
     _produtoApp     = produtoApp;
 }
Exemplo n.º 12
0
 public ProdutoController(IProdutoAppService produtoAppService, IServiceBusSender serviceBusSender)
 {
     _produtoAppService = produtoAppService;
     _serviceBusSender  = serviceBusSender;
 }
Exemplo n.º 13
0
 /// <summary>
 /// Construtor
 /// </summary>
 /// <param name="iAppService"></param>
 public ProdutoController(IProdutoAppService iAppService)
 {
     AppService = iAppService;
 }
Exemplo n.º 14
0
 public ProdutoController(ILogger <ProdutoViewModel> logger, IProdutoAppService produtoAppService) : base(logger)
 {
     this._produtoAppService = produtoAppService;
 }
Exemplo n.º 15
0
 public ProdutosController(IProdutoAppService produtoApp, ICategoriaAppService categoriaApp)
 {
     _produtoApp   = produtoApp;
     _categoriaApp = categoriaApp;
 }
 public ProdutosController(IProdutoAppService produtoApp)
 {
     _produtoApp = produtoApp;
 }
Exemplo n.º 17
0
 public ProdutosController(IProdutoAppService produtoApp, IFornecedorAppService fornecedorApp)
 {
     _produtoApp    = produtoApp;
     _fornecedorApp = fornecedorApp;
 }
 public ProdutosController(IClienteAppService clienteApp, IProdutoAppService produtoApp, IMapper mapper)
 {
     _clienteApp = clienteApp;
     _produtoApp = produtoApp;
     _mapper     = mapper;
 }
Exemplo n.º 19
0
 //construtor para injeção de dependência
 public ProdutoController(IProdutoAppService appService)
 {
     this.appService = appService;
 }
Exemplo n.º 20
0
 public ProdutoController(IProdutoAppService produtoAppService, ICategoriaAppService categoriaAppService)
 {
     _produtoAppService   = produtoAppService;
     _categoriaAppService = categoriaAppService;
 }
 public ProdutoController(IProdutoAppService produtoService, IClienteAppService clienteService)
 {
     _produtoService = produtoService;
     _clienteService = clienteService;
 }
Exemplo n.º 22
0
 public ProdutosController(IProdutoAppService produtoApp, IClienteAppService clienteApp, IProdutoParse produtoParse)
 {
     _produtoApp = produtoApp;
     _clienteApp = clienteApp;
     _produtoParse = produtoParse;
 }
Exemplo n.º 23
0
 public CarrinhoController(ICarrinhoAppService carrinhoAppService, IProdutoAppService produtoAppService)
 {
     this.carrinhoAppService = carrinhoAppService;
     this.produtoAppService = produtoAppService;
 }
Exemplo n.º 24
0
 public ProdutoController(IProdutoAppService ProdutoAppService)
 {
     _produtoAppService = ProdutoAppService;
 }
 public ProdutosController(IProdutoAppService produtoAppService, IClienteAppService clienteAppService, IEFCoreRepository <Produto> repo, IMapper mapper)
 {
     _produtoAppService = produtoAppService;
     _clienteAppService = clienteAppService;
     _mapper            = mapper;
 }
Exemplo n.º 26
0
 public ProdutosController(IProdutoAppService ProdutoAppService, IClienteAppService clienteAppService)
 {
     _produtoAppService = ProdutoAppService;
     _clienteAppService = clienteAppService;
 }
Exemplo n.º 27
0
 public PedidoController(IPedidoAppService pedidoApp, IFornecedorAppService fornecedorApp, IProdutoAppService produtoApp, IItensPedidoAppService itensPedidoApp)
 {
     _pedidoApp      = pedidoApp;
     _fornecedorApp  = fornecedorApp;
     _produtoApp     = produtoApp;
     _itensPedidoApp = itensPedidoApp;
 }
Exemplo n.º 28
0
 public ProdutoController(IProdutoAppService produtoAppService)
 {
     _produtoAppService = produtoAppService;
 }
Exemplo n.º 29
0
 public VitrineController(IProdutoAppService produtoAppService)
 {
     _produtoAppService = produtoAppService;
 }
Exemplo n.º 30
0
 public ProdutoController(IProdutoAppService produtoApp, IClienteAppService clienteApp)
 {
     _produtoApp = produtoApp;
     _clienteApp = clienteApp;
 }
Exemplo n.º 31
0
 public ProdutoController(IProdutoAppService service)
 {
     this._service = service;
 }