Ejemplo n.º 1
0
 public ConviteController(ISolicitacaoAppService solicitacaoDocumentoAppService,
                          IFichaCadastralAppService fichaCadastralAppService,
                          IEnderecoAppService enderecoAppService,
                          IBancoAppService bancoAppService,
                          IContatoAppService contatoAppService,
                          ISolicitacaoAppService solicitacaoAppService)
 {
     _solicitacaoAppService    = solicitacaoDocumentoAppService;
     _fichaCadastralAppService = fichaCadastralAppService;
     _enderecoAppService       = enderecoAppService;
     _contatoAppService        = contatoAppService;
     _bancoAppService          = bancoAppService;
 }
 public UploadArquivoController(IFichaCadastralAppService fichaCadastralAppService)
 {
     _fichaCadastralAppService = fichaCadastralAppService;
     _filesHelper = new FilesHelper(_deleteUrl, DeleteType, StorageRoot, _urlBase, _tempPath, _serverMapPath);
 }