public Endorsement getEndorsement() { return booking.getPaymentMethod() instanceof Endorsement ? (Endorsement) booking.getPaymentMethod() : null; }
public CreditCard getCreditCard() { return booking.getPaymentMethod() instanceof CreditCard ? (CreditCard) booking.getPaymentMethod() : null; }