//删除
 public IActionResult Delete(int id)
 {
     _departmentAppService.DeleteDtoById(id);
     return(RedirectToAction("Index", "Department"));
 }