示例#1
0
        //*************************Create***************************************

        public ActionResult Create()
        {
            SelectList positions = new SelectList(employeesDAO.GetAllPosition());

            ViewBag.Position = positions;
            return(View());
        }