// Method removes staff from on call list
 public void RemoveOnCallStaffItem(StaffListViewItem item)
 {
     staffOncallList.Items.Remove(item);
 }
 // Method removes staff from unregister list
 public void RemoveUnregisteredStaffItem(StaffListViewItem item)
 {
     staffUnregisterList.Items.Remove(item);
 }