public ActionResult ConfigureIntervals(int pull, int push) { var model = new AppSettingsDTO() { PullInterval = pull, PushInterval = push }; appSettingsManager.Update(model); return(Json(new object(), JsonRequestBehavior.AllowGet)); }