# File lib/active_merchant/billing/gateways/paystation.rb, line 73
      def store(credit_card, options = {})
        post = new_request
        
        add_invoice(post, options)
        add_credit_card(post, credit_card)
        store_credit_card(post, options)
        
        commit(post)
      end