示例#1
0
 public EntradaMaterialController(
     IEntradaMaterialAppService entradaMaterialAppService,
     ITipoDocumentoAppService tipoDocumentoAppService,
     ITipoCompraAppService tipoCompraAppService,
     ICifFobAppService cifFobAppService,
     INaturezaOperacaoAppService naturezaOperacaoAppService,
     ISerieNFAppService serieNFAppService,
     ICSTAppService CSTAppService,
     ICodigoContribuicaoAppService codigoContribuicaoAppService,
     IComplementoNaturezaOperacaoAppService complementoNaturezaOperacaoAppService,
     IComplementoCSTAppService complementoCSTAppService,
     INaturezaReceitaAppService naturezaReceitaAppService,
     IParametrosUsuarioAppService parametrosUsuarioAppService,
     IImpostoFinanceiroAppService impostoFinanceiroAppService,
     IOrdemCompraAppService ordemCompraAppService,
     MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.entradaMaterialAppService  = entradaMaterialAppService;
     this.tipoDocumentoAppService    = tipoDocumentoAppService;
     this.tipoCompraAppService       = tipoCompraAppService;
     this.cifFobAppService           = cifFobAppService;
     this.naturezaOperacaoAppService = naturezaOperacaoAppService;
     this.serieNFAppService          = serieNFAppService;
     this.CSTAppService = CSTAppService;
     this.codigoContribuicaoAppService          = codigoContribuicaoAppService;
     this.complementoNaturezaOperacaoAppService = complementoNaturezaOperacaoAppService;
     this.complementoCSTAppService    = complementoCSTAppService;
     this.naturezaReceitaAppService   = naturezaReceitaAppService;
     this.parametrosUsuarioAppService = parametrosUsuarioAppService;
     this.impostoFinanceiroAppService = impostoFinanceiroAppService;
     this.ordemCompraAppService       = ordemCompraAppService;
 }
示例#2
0
 public MedicaoContratoController(IClienteFornecedorAppService clienteFornecedorAppService,
                                  IContratoAppService contratoAppService,
                                  IContratoRetificacaoItemAppService contratoRetificacaoItemAppService,
                                  ITipoDocumentoAppService tipoDocumentoAppService,
                                  ITipoCompraAppService tipoCompraAppService,
                                  ICifFobAppService cifFobAppService,
                                  INaturezaOperacaoAppService naturezaOperacaoAppService,
                                  ISerieNFAppService serieNFAppService,
                                  ICSTAppService cstAppService,
                                  ICodigoContribuicaoAppService codigoContribuicaoAppService,
                                  IContratoRetificacaoAppService contratoRetificacaoAppService,
                                  IContratoRetificacaoItemMedicaoAppService contratoRetificacaoItemMedicaoAppService,
                                  ITituloPagarAppService tituloPagarAppService,
                                  IParametrosContratoAppService parametrosContratoAppService,
                                  MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.clienteFornecedorAppService       = clienteFornecedorAppService;
     this.contratoAppService                = contratoAppService;
     this.contratoRetificacaoItemAppService = contratoRetificacaoItemAppService;
     this.tipoDocumentoAppService           = tipoDocumentoAppService;
     this.tipoCompraAppService              = tipoCompraAppService;
     this.cifFobAppService           = cifFobAppService;
     this.naturezaOperacaoAppService = naturezaOperacaoAppService;
     this.serieNFAppService          = serieNFAppService;
     this.cstAppService = cstAppService;
     this.codigoContribuicaoAppService             = codigoContribuicaoAppService;
     this.contratoRetificacaoAppService            = contratoRetificacaoAppService;
     this.contratoRetificacaoItemMedicaoAppService = contratoRetificacaoItemMedicaoAppService;
     this.tituloPagarAppService        = tituloPagarAppService;
     this.parametrosContratoAppService = parametrosContratoAppService;
 }