public JsonResult CreateAjax(Usuario usuario)
        {
           
            String mensaje = String.Empty;

            try
            {
                if (ModelState.IsValid)
                {
                    db.usuarios.Add(usuario);
                    db.SaveChanges();
                   


                    mensaje = "Se ha registrado el usuario exitosamente woeee no mames";
                }
            }
            catch (Exception exc)
            {
                mensaje = "Hubo un error en el servidor: " + exc.Message;
            }
            return Json(new { mensaje = mensaje }, JsonRequestBehavior.AllowGet);
        }
        public JsonResult AjaxEdit(Usuario usuario)
        {
            String mensaje = String.Empty;

            try
            {
                db.Entry(usuario).State = EntityState.Modified;
                int c = db.SaveChanges();
                mensaje = "Se ha editado los datos del libro satisfactoriamente";
            }
            catch (Exception exc)
            {
                mensaje = "Hubo un error en el servidor: " + exc.Message;
            }


            return Json(new { mensaje = mensaje }, JsonRequestBehavior.AllowGet);
        }