public bool IsNameExist(string name) { var isExist = false; var category = _infoRepository.DepartmentId(name); if (category != null) { isExist = true; } return(isExist); }