private void PaidToSite()
 {
     if (this.Order.PaymentStatus == PaymentStatus.Prepaid)
     {
         this.ResponseStatus(true, "success");
     }
     else
     {
         if (OrderProcessor.CheckAction(this.Order, OrderActions.BUYER_PAY) && this.PayForOrder(this.Order))
         {
             this.ResponseStatus(true, "success");
         }
         else
         {
             this.ResponseStatus(false, "fail");
         }
     }
 }