Example #1
0
        // 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));
        }
Example #2
0
        // GET: BackStage/AboutUs
        public ActionResult Company()
        {
            var model = CompanyBz.Get(o => true);

            return(View(model));
        }