// GET: About public ActionResult Index() { var AboutValues = _aboutManager.GetAll(); return(View(AboutValues)); }
public ActionResult Index() { var value = aboutManager.GetAll(); return(View(value)); }
public ActionResult Index() { var data = aboutManager.GetAll(); return(View(data)); }
public ActionResult Index() { var result = _aboutManager.GetAll(); return(View(result)); }