Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.87 KB | None | 0 0
  1.  public int shopId { get; set; }
  2.         private decimal Price;
  3.         public decimal price
  4.         {
  5.             get
  6.             {
  7.                 decimal x = (decimal)Math.Round(Price, 2);
  8.                 string y = x.ToString("0.00");
  9.                 return decimal.Parse(y);
  10.             }
  11.             set
  12.             {
  13.                 Price = value;
  14.             }
  15.         }
  16.         public string control { get; set; }
  17.         public string description { get; set; }
  18.         public string email { get; set; }
  19.         public string notifyURL { get; set; }
  20.  
  21.         public string returnUrlSuccess { get; set; }
  22.         public bool returnUrlSuccessTidPass { get; set; }
  23.         public bool hideReceiver { get; set; }
  24.         public string customFinishNote { get; set; }
  25.         public string privateKey { get; set; }
  26.         public string signature { get; set; }
  27.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement