// GET: Singlton public ActionResult Index() { President pr = President.Instance(); pr.SetPresidentName("New prezident name"); pr.SetPresidentAge(44); President pr2 = President.Instance(); pr2.SetPresidentAge(23); return(View()); }