public ActionResult AddDetalle_Examenes_Laboratorio(int rowIndex = 0, int functionMode = 0, int id = 0)
        {
            int ModuleId = (Session["CurrentModuleId"] != null) ? Convert.ToInt32(Session["CurrentModuleId"]) : 0;

            ViewBag.currentRowIndex = rowIndex;
            ViewBag.functionMode    = functionMode;
            ViewBag.Consult         = false;
            var permission = PermissionHelper.GetRoleObjectPermission(SessionHelper.Role, 44344);

            ViewBag.Permission = permission;
            if (!_tokenManager.GenerateToken())
            {
                return(null);
            }
            _IDetalle_Examenes_LaboratorioApiConsumer.SetAuthHeader(_tokenManager.Token);
            Detalle_Examenes_LaboratorioModel varDetalle_Examenes_Laboratorio = new Detalle_Examenes_LaboratorioModel();


            if (id.ToString() != "0")
            {
                var Detalle_Examenes_LaboratoriosData = _IDetalle_Examenes_LaboratorioApiConsumer.ListaSelAll(0, 1000, "Detalle_Examenes_Laboratorio.Folio=" + id, "").Resource.Detalle_Examenes_Laboratorios;

                if (Detalle_Examenes_LaboratoriosData != null && Detalle_Examenes_LaboratoriosData.Count > 0)
                {
                    var Detalle_Examenes_LaboratorioData = Detalle_Examenes_LaboratoriosData.First();
                    varDetalle_Examenes_Laboratorio = new Detalle_Examenes_LaboratorioModel
                    {
                        Folio                     = Detalle_Examenes_LaboratorioData.Folio
                        , Indicador               = Detalle_Examenes_LaboratorioData.Indicador
                        , IndicadorIndicador      = CultureHelper.GetTraduction(Convert.ToString(Detalle_Examenes_LaboratorioData.Indicador), "Indicadores_Laboratorio") ?? (string)Detalle_Examenes_LaboratorioData.Indicador_Indicadores_Laboratorio.Indicador
                        , Resultado               = Detalle_Examenes_LaboratorioData.Resultado
                        , Unidad                  = Detalle_Examenes_LaboratorioData.Unidad
                        , Intervalo_de_Referencia = Detalle_Examenes_LaboratorioData.Intervalo_de_Referencia
                        , Fecha_de_Resultado      = (Detalle_Examenes_LaboratorioData.Fecha_de_Resultado == null ? string.Empty : Convert.ToDateTime(Detalle_Examenes_LaboratorioData.Fecha_de_Resultado).ToString(ConfigurationProperty.DateFormat))
                        , Estatus_Indicador       = Detalle_Examenes_LaboratorioData.Estatus_Indicador
                    };
                }
            }
            if (!_tokenManager.GenerateToken())
            {
                return(Json(null, JsonRequestBehavior.AllowGet));
            }

            _IIndicadores_LaboratorioApiConsumer.SetAuthHeader(_tokenManager.Token);
            var Indicadores_Laboratorios_Indicador = _IIndicadores_LaboratorioApiConsumer.SelAll(true);

            if (Indicadores_Laboratorios_Indicador != null && Indicadores_Laboratorios_Indicador.Resource != null)
            {
                ViewBag.Indicadores_Laboratorios_Indicador = Indicadores_Laboratorios_Indicador.Resource.Where(m => m.Indicador != null).OrderBy(m => m.Indicador).Select(m => new SelectListItem
                {
                    Text = CultureHelper.GetTraduction(Convert.ToString(m.Folio), "Indicadores_Laboratorio", "Indicador") ?? m.Indicador.ToString(), Value = Convert.ToString(m.Folio)
                }).ToList();
            }


            return(PartialView("AddDetalle_Examenes_Laboratorio", varDetalle_Examenes_Laboratorio));
        }
        public ActionResult Post(bool IsNew, Detalle_Examenes_LaboratorioModel varDetalle_Examenes_Laboratorio)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    if (!_tokenManager.GenerateToken())
                    {
                        return(Json(null, JsonRequestBehavior.AllowGet));
                    }
                    _IDetalle_Examenes_LaboratorioApiConsumer.SetAuthHeader(_tokenManager.Token);



                    var result = "";
                    var Detalle_Examenes_LaboratorioInfo = new Detalle_Examenes_Laboratorio
                    {
                        Folio       = varDetalle_Examenes_Laboratorio.Folio
                        , Indicador = varDetalle_Examenes_Laboratorio.Indicador
                        , Resultado = varDetalle_Examenes_Laboratorio.Resultado
                        , Unidad    = varDetalle_Examenes_Laboratorio.Unidad
                        , Intervalo_de_Referencia = varDetalle_Examenes_Laboratorio.Intervalo_de_Referencia
                        , Fecha_de_Resultado      = (!String.IsNullOrEmpty(varDetalle_Examenes_Laboratorio.Fecha_de_Resultado)) ? DateTime.ParseExact(varDetalle_Examenes_Laboratorio.Fecha_de_Resultado, ConfigurationProperty.DateFormat, CultureInfo.InvariantCulture as IFormatProvider) : (DateTime?)null
                        , Estatus_Indicador       = varDetalle_Examenes_Laboratorio.Estatus_Indicador
                    };

                    result = !IsNew?
                             _IDetalle_Examenes_LaboratorioApiConsumer.Update(Detalle_Examenes_LaboratorioInfo, null, null).Resource.ToString() :
                                 _IDetalle_Examenes_LaboratorioApiConsumer.Insert(Detalle_Examenes_LaboratorioInfo, null, null).Resource.ToString();

                    return(Json(result, JsonRequestBehavior.AllowGet));
                }
                return(Json(false, JsonRequestBehavior.AllowGet));
            }
            catch (ServiceException ex)
            {
                return(Json(false, JsonRequestBehavior.AllowGet));
            }
        }
        public ActionResult Create(int Id = 0, int consult = 0)
        {
            int ModuleId   = (Session["CurrentModuleId"] != null) ? Convert.ToInt32(Session["CurrentModuleId"]) : 0;
            var permission = PermissionHelper.GetRoleObjectPermission(SessionHelper.Role, 44344);

            ViewBag.Permission = permission;
            var varDetalle_Examenes_Laboratorio = new Detalle_Examenes_LaboratorioModel();

            ViewBag.ObjectId  = "44344";
            ViewBag.Operation = "New";

            ViewBag.IsNew = true;



            if ((Id.GetType() == typeof(string) && Id.ToString() != "") || ((Id.GetType() == typeof(int) || Id.GetType() == typeof(Int16) || Id.GetType() == typeof(Int32) || Id.GetType() == typeof(Int64) || Id.GetType() == typeof(short)) && Id.ToString() != "0"))
            {
                ViewBag.IsNew     = false;
                ViewBag.Operation = "Update";
                if (!_tokenManager.GenerateToken())
                {
                    return(Json(null, JsonRequestBehavior.AllowGet));
                }
                _IDetalle_Examenes_LaboratorioApiConsumer.SetAuthHeader(_tokenManager.Token);
                var Detalle_Examenes_LaboratorioData = _IDetalle_Examenes_LaboratorioApiConsumer.GetByKeyComplete(Id).Resource.Detalle_Examenes_Laboratorios[0];
                if (Detalle_Examenes_LaboratorioData == null)
                {
                    return(HttpNotFound());
                }

                varDetalle_Examenes_Laboratorio = new Detalle_Examenes_LaboratorioModel
                {
                    Folio                     = (int)Detalle_Examenes_LaboratorioData.Folio
                    , Indicador               = Detalle_Examenes_LaboratorioData.Indicador
                    , IndicadorIndicador      = CultureHelper.GetTraduction(Convert.ToString(Detalle_Examenes_LaboratorioData.Indicador), "Indicadores_Laboratorio") ?? (string)Detalle_Examenes_LaboratorioData.Indicador_Indicadores_Laboratorio.Indicador
                    , Resultado               = Detalle_Examenes_LaboratorioData.Resultado
                    , Unidad                  = Detalle_Examenes_LaboratorioData.Unidad
                    , Intervalo_de_Referencia = Detalle_Examenes_LaboratorioData.Intervalo_de_Referencia
                    , Fecha_de_Resultado      = (Detalle_Examenes_LaboratorioData.Fecha_de_Resultado == null ? string.Empty : Convert.ToDateTime(Detalle_Examenes_LaboratorioData.Fecha_de_Resultado).ToString(ConfigurationProperty.DateFormat))
                    , Estatus_Indicador       = Detalle_Examenes_LaboratorioData.Estatus_Indicador
                };
            }
            if (!_tokenManager.GenerateToken())
            {
                return(Json(null, JsonRequestBehavior.AllowGet));
            }

            _IIndicadores_LaboratorioApiConsumer.SetAuthHeader(_tokenManager.Token);
            var Indicadores_Laboratorios_Indicador = _IIndicadores_LaboratorioApiConsumer.SelAll(true);

            if (Indicadores_Laboratorios_Indicador != null && Indicadores_Laboratorios_Indicador.Resource != null)
            {
                ViewBag.Indicadores_Laboratorios_Indicador = Indicadores_Laboratorios_Indicador.Resource.Where(m => m.Indicador != null).OrderBy(m => m.Indicador).Select(m => new SelectListItem
                {
                    Text = CultureHelper.GetTraduction(Convert.ToString(m.Folio), "Indicadores_Laboratorio", "Indicador") ?? m.Indicador.ToString(), Value = Convert.ToString(m.Folio)
                }).ToList();
            }


            ViewBag.Consult = consult == 1;
            if (consult == 1)
            {
                ViewBag.Operation = "Consult";
            }
            return(View(varDetalle_Examenes_Laboratorio));
        }