public void addBTContainerToContainers(BTBookingDto arg0, BTContainerDto arg1)
      throws BTBookingException {
    BTBookingFacade facade = createFacade();

    try {
      facade.addBTContainerToContainers(arg0, arg1);
    } catch (RemoteException e) {
      LogWithUserInfo.error(log, "addBTContainerToContainers", e);
      throw new InfrastructureException(e);
    } finally {
      removeFacadeQuietly(facade);
    }
  }