/// <summary>
 /// Copies the base properties from a source EventItemSchedule object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom(EventItemSchedule source)
 {
     this.Id = source.Id;
     this.EventItemOccurrenceId = source.EventItemOccurrenceId;
     this.ScheduleId            = source.ScheduleId;
     this.ScheduleName          = source.ScheduleName;
     this.Guid      = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Example #2
0
 /// <summary>
 /// Copies the base properties from a source EventItemSchedule object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( EventItemSchedule source )
 {
     this.Id = source.Id;
     this.EventItemOccurrenceId = source.EventItemOccurrenceId;
     this.ScheduleId = source.ScheduleId;
     this.ScheduleName = source.ScheduleName;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }