public ActionResult Index(DeptVm vm) { DepartmentService deptService = new DepartmentService(); vm.DeptList = deptService.DeptList; vm.SelectEmpList = deptService.GetEmployees(vm.SelectedDeptNo); return(View(vm)); }
// GET: Department public ActionResult Index() { DepartmentService deptService = new DepartmentService(); DeptVm vm = new DeptVm(); vm.SelectEmpList = deptService.EmpList; vm.DeptList = deptService.DeptList; return(View(vm)); }