public ActionResult Create() { ViewBag.DepartmentId = new SelectList(managerDepartment.List(), "Id", "Name"); ViewBag.ManagerId = managerPersonnel.List(); return(View()); }
public ActionResult Index() { return(View(managerDepartment.List())); }