Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public class ProductSale{
  2. public long ID {get; set;}
  3. public long ProductID {get; set;}
  4. public long ProductCategoryID {get; set;}
  5. public DateTime SaleDate {get; set;}
  6. ...
  7. }
  8.  
  9. public class Product{
  10. public long ID {get; set;}
  11. public string Description {get; set;}
  12. ...
  13. }
  14.  
  15. public class ProductCategory{
  16. public long ID {get; set;}
  17. public string Description {get; set;}
  18. ...
  19. }
  20.  
  21. public class ProductSaleRange{
  22. public long ID {get; set;}
  23. public long Range{get; set;}
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement