Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. CarReservation{
  2.  
  3. String userName;
  4. String id;
  5. // in millis
  6. long startDate;
  7. long endDate;
  8.  
  9. CarCategory carCategoryEnum;
  10.  
  11. //--end common model
  12. // only vendor 1 supports discounts on referrals
  13. Referral referral;
  14.  
  15. // only vendor 2 supports delivering and pick up from home
  16. Address homeDeliveryAddress;
  17. ...
  18. }
  19.  
  20. CarReservation{
  21.  
  22. String userName;
  23. String id;
  24. // in millis
  25. long startDate;
  26. long endDate;
  27.  
  28. CarCategory carCategoryEnum;
  29.  
  30. //--end common model
  31.  
  32. vendor_1_name : {
  33. // only vendor 1 supports discounts on referrals
  34. Referral referral;
  35. }
  36.  
  37. vendor_2_name : {
  38. // only vendor 2 supports delivering and pick up from home
  39. Address homeDeliveryAddress;
  40. }
  41. ..
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement