Guest User

Untitled

a guest
Nov 15th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. using Cnp.Sdk;
  2. using System;
  3.  
  4. namespace CNP_Examples
  5. {
  6. class Program
  7. {
  8. public static void PartialCapture()
  9. {
  10. CnpOnline _cnp = new CnpOnline();
  11. var capture = new capture
  12. {
  13. id = "1",
  14. cnpTxnId = 123456000,
  15. amount = 106,
  16. partial = true,
  17. payPalNotes = "Notes"
  18. };
  19.  
  20. var response = _cnp.Capture(capture);
  21. }
  22.  
  23. static void Main(string[] args)
  24. {
  25. PartialCapture();
  26. Console.ReadLine();
  27. }
  28. }
  29. }
Add Comment
Please, Sign In to add comment