public ActionResult InformacionAdicional() { var promoventeService = new PromoventeService(); var promoventeDto = promoventeService.ConsultaListado(IdSesionTipoTramite, false); promoventeDto.DuplaValores = new DuplaValoresDTO { Valor = "Más información sobre este trámite", Informacion = "Información adicional a este trámite." }; return(PartialView(promoventeDto)); }
public ActionResult Informacion(int CatTipoTramiteId) { var promoventeService = new PromoventeService(); var existeTramite = new PromoventeService().SeEncuentraTramite(CatTipoTramiteId); if (!existeTramite) { return(View("Error")); } var promoventeDto = promoventeService.ConsultaListado(CatTipoTramiteId, true); promoventeDto.DuplaValores = new DuplaValoresDTO { Valor = "Información general sobre este trámite" //Informacion = "Información general del trámite y los requisitos que se deben cumplir." }; return(PartialView(promoventeDto)); }