示例#1
0
 public OrderController(IArquivoBaseBusiness arquivoBaseBusiness, IServiceProvider serviceProvider)
 {
     this.ArquivoBaseBusiness = arquivoBaseBusiness;
     this.ServiceProvider     = serviceProvider;
 }
示例#2
0
 public ImportacaoService(IServiceProvider serviceProvider, IPedidoImportacaoBusiness pedidoImportacaoBusiness, IArquivoBaseBusiness arquivoBase)
 {
     this.serviceProvider   = serviceProvider;
     this._arquivoBase      = arquivoBase;
     this._pedidoImportacao = pedidoImportacaoBusiness;
     this.Tasks             = new Dictionary <string, Task>();
 }
示例#3
0
 public QueryController(IArquivoBaseBusiness arquivoBaseBusiness)
 {
     this.ArquivoBaseBusiness = arquivoBaseBusiness;
 }