Ejemplo n.º 1
0
 public void Crear(LenguajeProgramacion obj)
 {
     GestorDatos.AgregarElemento(obj);
 }
Ejemplo n.º 2
0
 public void Editar(LenguajeProgramacion obj)
 {
     GestorDatos.EditarElemento(obj);
 }
Ejemplo n.º 3
0
        public JsonResult Obtener(int id)
        {
            LenguajeProgramacion Obj = GestorDatos.ObtenerElemento(id);

            return(Json(Obj, JsonRequestBehavior.AllowGet));
        }