public ActionResult EditOneModule(string type, string title, string content, string text) { JObject obj = new JObject(); obj["title"] = title; obj["content"] = content; api.EditOneModule(type, obj); return(RedirectToAction("OneModule")); }