示例#1
0
        // GET: Division
        public ActionResult Index()
        {
            DivisionRepo    divisionRepo = new DivisionRepo();
            List <Division> divisionList = new List <Division>();

            divisionList = divisionRepo.GetDivisionInfoAll();
            return(View(divisionList));
        }