Beispiel #1
0
        public Tour()
        {
            this.time = new Datetime("HH:mm");
            this.time.PropertyChanged += new
                                         PropertyChangedEventHandler(time_PropertyChanged);

            this.groups = new TourGroupCollection();

            this.id = -1;
        }
Beispiel #2
0
 internal void CopyTo(Datetime datetime)
 {
     datetime.Value   = this.Value;
     datetime.Format  = this.Format;
     datetime.IsDirty = this.IsDirty;
 }