// GET: Settings/Delete
        public ActionResult Delete(int id)
        {
            var sp = new SettingProcess();

            sp.Delete(id);
            return(RedirectToAction("Index"));
        }