예제 #1
0
        //
        // GET: /VerCurricula/

        public ActionResult Index(string key)
        {
            Curricula curricula = null;

            if (!string.IsNullOrWhiteSpace(key))
            {
                curricula = GestionPedagogica.ObtenerCurricula(int.Parse(key));
            }

            return(View("Index", curricula));
        }