public JsonResult GetListaModelosDocx(long?IdTipoAto) { bool resp = false; string mesage = string.Empty; List <DtoModeloDocxList> lista = new List <DtoModeloDocxList>(); try { using (var appService = new AppServiceModelosDoc(this.UfwCartNew, this.IdCtaAcessoSist)) { lista = appService.GetListaModelosDocx(IdTipoAto).ToList(); resp = true; mesage = "Dados retornados con sucesso"; } } catch (Exception ex) { TypeInfo t = this.GetType().GetTypeInfo(); IOFunctions.GerarLogErro(t, ex); mesage = "Falha ao obter dados! " + "[" + ex.Message + "]"; } var resultado = new { resposta = resp, msg = mesage, ListaModelosDocx = lista }; return(Json(resultado)); }
// GET: Arquivos public ActionResult IndexModelo() { IEnumerable <ModeloDocxListViewModel> listaArquivoModeloDocxListViewModel = new List <ModeloDocxListViewModel>(); using (AppServiceModelosDoc appService = new AppServiceModelosDoc(this.UfwCartNew, this.IdCtaAcessoSist)) { IEnumerable <DtoModeloDocxList> listaDtoModelosDocx = appService.GetListaModelosDocx(null).Where(a => a.Ativo == true); listaArquivoModeloDocxListViewModel = Mapper.Map <IEnumerable <DtoModeloDocxList>, IEnumerable <ModeloDocxListViewModel> >(listaDtoModelosDocx); } return(View(listaArquivoModeloDocxListViewModel)); }