Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. public class Phone
  2. {
  3. public int Id { get; set; }
  4. public string Name { get; set; }
  5. public string Producer { get; set; }
  6. public string LongDescription { get; set; }
  7. public int Price { get; set; }
  8. public string ImageName { get; set; }
  9. public byte[] Image { get; set; }
  10. public string ImageUrl { get; set; }
  11. public int PurchaseId { get; set; }
  12. public Purchase Purchase { get; set; }
  13. }
  14.  
  15. public class Purchase
  16. {
  17. public int PurchaseId { get; set; }
  18. public string Country { get; set; }
  19. public string City { get; set; }
  20. public Phone Phone { get; set; }
  21. public List<Phone> Phones { get; set; }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement