Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public class Product
  2. {
  3. public int ProductId { get; set; }
  4.  
  5. public string ProductName { get; set; }
  6.  
  7. public decimal ListPrice { get; set; }
  8.  
  9. public string ProductNumber { get; set; }
  10.  
  11. public DateTime SellStartDate { get; set; }
  12. }
  13.  
  14. public class ProductSubcategory
  15. {
  16. public int ProductSubcategoryId { get; set; }
  17.  
  18. public string ProductSubcategoryName { get; set; }
  19.  
  20. public IList<Product> Products { get; set; }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement