Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. public class Product
  2. {
  3. public int ProductID { get; set; }
  4.  
  5. public string Name { get; set; }
  6.  
  7. public string SubCategoryName { get; set; }
  8.  
  9. public double Price { get; set; }
  10.  
  11. public string Seller { get; set; }
  12.  
  13. public bool Approved { get; set; }
  14.  
  15. public string Imgfilepath { get; set; }
  16.  
  17. public float Weight { get; set; }
  18.  
  19. public float Volume { get; set; }
  20.  
  21. public string SKU { get; set; }
  22.  
  23. public string Xref { get; set; }
  24.  
  25. public string Description { get; set; }
  26.  
  27. public string Origin { get; set; }
  28. }
  29.  
  30.  
  31.  
  32.  
  33. public class Fastener
  34. {
  35. [Key]
  36. public int ProductID { get; set; }
  37.  
  38. public string Drive { get; set; }
  39.  
  40. public string Grade { get; set; }
  41.  
  42. public string Head { get; set; }
  43.  
  44. public float Size { get; set; }
  45.  
  46. public float Length { get; set; }
  47.  
  48. public float MaxLength { get; set; }
  49.  
  50. public string Scale { get; set; }
  51.  
  52. public string Material { get; set; }
  53.  
  54. public string Finish { get;set; }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement