Advertisement
Guest User

Untitled

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