Advertisement
BurningBunny

Reservation Class

Nov 10th, 2013
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | None | 0 0
  1. [Serializable]
  2. public class Reservation
  3. {
  4.     public DateInformation      Date            { get; set; }
  5.        
  6.     public ContactInformation   ContactInfo     { get; set; }
  7.     public BillingInformation   BillingInfo     { get; set; }
  8.        
  9.     public PaymentInformation   Payment         { get; set; }
  10.     public ExpenseInformation   Expense         { get; set; }
  11.  
  12.     public Reservation()
  13.     {
  14.         Date        = new DateInformation();
  15.         ContactInfo = new ContactInformation();
  16.         BillingInfo = new BillingInformation();
  17.         Payment     = new PaymentInformation();
  18.         Expense     = new ExpenseInformation();
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement