Client model for Schedule that includes all the fields that are available for GETs. Use this for GETs (use ScheduleEntity for POST/PUTs)
Inheritance: ScheduleEntity
Example #1
0
 /// <summary>
 /// Copies the base properties from a source Schedule object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( Schedule source )
 {
     this.Id = source.Id;
     this.CategoryId = source.CategoryId;
     this.CheckInEndOffsetMinutes = source.CheckInEndOffsetMinutes;
     this.CheckInStartOffsetMinutes = source.CheckInStartOffsetMinutes;
     this.Description = source.Description;
     this.EffectiveEndDate = source.EffectiveEndDate;
     this.EffectiveStartDate = source.EffectiveStartDate;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.iCalendarContent = source.iCalendarContent;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Name = source.Name;
     this.WeeklyDayOfWeek = source.WeeklyDayOfWeek;
     this.WeeklyTimeOfDay = source.WeeklyTimeOfDay;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }