コード例 #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 RequisicaoMaterialController(IRequisicaoMaterialAppService requisicaoMaterialAppService,
                                     IMaterialAppService materialAppService,
                                     IParametrosOrdemCompraAppService parametrosOrdemCompraAppService,
                                     IParametrosUsuarioAppService parametrosUsuarioAppService,
                                     MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.requisicaoMaterialAppService    = requisicaoMaterialAppService;
     this.materialAppService              = materialAppService;
     this.parametrosOrdemCompraAppService = parametrosOrdemCompraAppService;
     this.parametrosUsuarioAppService     = parametrosUsuarioAppService;
 }
コード例 #3
0
 public ParametrosUsuarioController(IParametrosUsuarioAppService parametrosUsuarioAppService, MessageQueue messageQueue)
     : base(messageQueue)
 {
     this.parametrosUsuarioAppService = parametrosUsuarioAppService;
 }