public Store removeStore(Store store) {
    getStores().remove(store);
    store.setStaff(null);

    return store;
  }
  public Store addStore(Store store) {
    getStores().add(store);
    store.setStaff(this);

    return store;
  }