Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class CustomerDatabaseParameter
  2. {
  3.  
  4. public string ColumnName { get; set; }
  5.  
  6. public double Value { get; set; }
  7.  
  8. }
  9.  
  10. From:
  11. ColumnName = "*xxxx";
  12. Value = 50.0;
  13.  
  14. To:
  15. ColumnName = "*xxxx";
  16. Value = 100.0;
  17.  
  18. From:
  19. ColumnName = "www";
  20. Value = 50.0;
  21.  
  22. To:
  23. ColumnName = "www";
  24. Value = 50.0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement