Simple Client Model for GroupMember
Ejemplo n.º 1
0
 /// <summary>
 /// Copies the base properties from a source GroupMember object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( GroupMember source )
 {
     this.Id = source.Id;
     this.DateTimeAdded = source.DateTimeAdded;
     this.GroupId = source.GroupId;
     this.GroupMemberStatus = source.GroupMemberStatus;
     this.GroupRoleId = source.GroupRoleId;
     this.GuestCount = source.GuestCount;
     this.IsNotified = source.IsNotified;
     this.IsSystem = source.IsSystem;
     this.Note = source.Note;
     this.PersonId = source.PersonId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Copies the base properties from a source GroupMember object
 /// </summary>
 /// <param name="source">The source.</param>
 public void CopyPropertiesFrom( GroupMember source )
 {
     this.Id = source.Id;
     this.DateTimeAdded = source.DateTimeAdded;
     this.ForeignGuid = source.ForeignGuid;
     this.ForeignKey = source.ForeignKey;
     this.GroupId = source.GroupId;
     this.GroupMemberStatus = source.GroupMemberStatus;
     this.GroupRoleId = source.GroupRoleId;
     this.GuestCount = source.GuestCount;
     this.IsNotified = source.IsNotified;
     this.IsSystem = source.IsSystem;
     this.ModifiedAuditValuesAlreadyUpdated = source.ModifiedAuditValuesAlreadyUpdated;
     this.Note = source.Note;
     this.PersonId = source.PersonId;
     this.CreatedDateTime = source.CreatedDateTime;
     this.ModifiedDateTime = source.ModifiedDateTime;
     this.CreatedByPersonAliasId = source.CreatedByPersonAliasId;
     this.ModifiedByPersonAliasId = source.ModifiedByPersonAliasId;
     this.Guid = source.Guid;
     this.ForeignId = source.ForeignId;
 }