public ActionResult Index()
        {
            //Listamos todas las carreras en una tabla
            DataTable CarrerList = DCarrera.ListarCarreras();

            return(View(CarrerList));
        }
        public ActionResult Create(Grupo grupo)
        {
            try
            {
                ViewBag.c = DCarrera.ListarCarreras();

                //grupo.IdCarrera = DCarrera.ObtenerIdCarreraPNombre(carreraCombo);
                string msg = DGrupo.InsertarGrupo(grupo);
                Console.WriteLine(msg);
                //System.Diagnostics.Debug.WriteLine(DGrupo.InsertarGrupo(grupo));
                // TODO: Add insert logic here
                return(RedirectToAction("Index"));
            }
            catch
            {
                return(RedirectToAction("Index"));
            }
        }