Пример #1
0
        // :: DATOS_DE_FORMACIÓN :: //

        // retornar JSON : CLASE_INSTITUTO / Condición
        public JsonResult GetCondicionList(string id)
        {
            List <CLASE_TITULO> records = ListViewModel.GetCondiciones();

            return(Json(new SelectList(records.Where(x => x.COD_CLASE == id), "COD_TITULO", "DES_TITULO"), JsonRequestBehavior.AllowGet));
        }