public dynamic Deletestaff(long id) { StaffDto dto = staffRepository.deleteStaff(id); if (dto == null) { return(NotFound()); } return(Ok(dto)); }