Guest User

Untitled

a guest
Jul 21st, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. @using PayPal.ButtonManager;
  2. @{
  3. var PackPurchase = BuyNowButton.Create(
  4. new HtmlButtonVariables { Business = "x@mydomain.com", ItemName = "My Product" },
  5. ButtonOptions.Create(
  6. ButtonOption.Create("Quantity",
  7. ButtonOptionItems.Create(
  8. ButtonOptionItem.Create("Single", price: "200.00", amount: "1"),
  9. ButtonOptionItem.Create("100 pack", price: "180.00", amount: "100")
  10. )
  11. )
  12. )
  13. );
Add Comment
Please, Sign In to add comment