コード例 #1
0
        public void setSecondResponse(WebbappResponse response)
        {
            this.second_response = response;

            // the swish callback might already have arrived
            if (second_response_send_msg != null)
            {
                payment_done();
            }
        }
コード例 #2
0
        public Client(WebbappResponse first_response, string order)
        {
            globId++;
            id = globId.ToString();

            this.order          = new Order(order);
            this.first_response = first_response;

            this.is_done = false;
        }