예제 #1
0
        public ActionResult Technology(int? page)
        {
            #region Prep Utilities
            myHandler = new BusinessLogicHandler();
            #endregion

            #region Get data
            IEnumerable<Supplier> suppliers = myHandler.GetTechSuppliers();
            #endregion

            return View(suppliers.ToList().ToPagedList(page ?? 1, 10));
        }