Beispiel #1
0
 // copy constructor
 public FantasticCustomStayModel(FantasticCustomStayModel model)
 {
     ListingId = model.ListingId;
     StartDate = model.StartDate;
     EndDate   = model.EndDate;
     MinStay   = model.MinStay;
 }
Beispiel #2
0
 public static string Stringify(FantasticCustomStayModel model)
 {
     return(Stringify(model.ListingId, model.StartDate, model.EndDate, model.MinStay));
 }