// GET: HeadStage/AboutUs public ActionResult AboutUs() { var Company = CompanyBz.Get(o => true); ViewBag.Generalization = Company.Generalization; ViewBag.Culture = Company.Culture; var Employee = EmployeeBz.LoadAll(o => o.isValid == true); return(View(Employee)); }
// GET: BackStage/AboutUs public ActionResult Company() { var model = CompanyBz.Get(o => true); return(View(model)); }