Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. class BllCustomer
  2. {
  3. public int CustomerId {get; set;}
  4. public String Name {get; set;}
  5. public BllAddress Address {get; set;}
  6. }
  7.  
  8. class BllAddress
  9. {
  10. public int AddressId {get; set;}
  11. public String Street {get; set;}
  12. public String City {get; set;}
  13. public String ZipCode {get; set; }
  14. }
  15.  
  16. class DalCustomer
  17. {
  18. public int CustomerId {get; set;}
  19. public String Name {get; set;}
  20. public int AddressID {get; set;}
  21. }
  22.  
  23. class DalAddress
  24. {
  25. public int AddressId {get; set;}
  26. public String Street {get; set;}
  27. public String City {get; set;}
  28. public String ZipCode {get; set; }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement