public IActionResult Edit(string id) { // ViewBag.departmentList = _SysDeptmentBLL.GetList(); if (!string.IsNullOrEmpty(id)) { var model = _ISysUserServices.Get(id); return(View(model)); } else { return(View()); } }