/// <summary> /// Clones this StreakType object to a new StreakType object /// </summary> /// <param name="source">The source.</param> /// <param name="deepCopy">if set to <c>true</c> a deep copy is made. If false, only the basic entity properties are copied.</param> /// <returns></returns> public static StreakType Clone(this StreakType source, bool deepCopy) { if (deepCopy) { return(source.Clone() as StreakType); } else { var target = new StreakType(); target.CopyPropertiesFrom(source); return(target); } }
/// <summary> /// Copies the properties from another StreakType object to this StreakType object /// </summary> /// <param name="target">The target.</param> /// <param name="source">The source.</param> public static void CopyPropertiesFrom(this StreakType target, StreakType source) { target.Id = source.Id; target.Description = source.Description; target.EnableAttendance = source.EnableAttendance; target.ForeignGuid = source.ForeignGuid; target.ForeignKey = source.ForeignKey; target.IsActive = source.IsActive; target.Name = source.Name; target.OccurrenceFrequency = source.OccurrenceFrequency; target.OccurrenceMap = source.OccurrenceMap; target.RequiresEnrollment = source.RequiresEnrollment; target.StartDate = source.StartDate; target.StructureEntityId = source.StructureEntityId; target.StructureType = source.StructureType; target.CreatedDateTime = source.CreatedDateTime; target.ModifiedDateTime = source.ModifiedDateTime; target.CreatedByPersonAliasId = source.CreatedByPersonAliasId; target.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId; target.Guid = source.Guid; target.ForeignId = source.ForeignId; }