public void Update(GuestViewModel other)
 {
     Model.Update(other.Model);
 }
 public GuestViewModel(GuestViewModel other)
 {
     Model = new Guest(other.Model);
     AttachEvents();
 }