internal void CopyFixed(MX source) { this.ID = source.ID; this.CreateDate = source.CreateDate; this.DomainID = source.DomainID; this.SMTPDomainName = source.SMTPDomainName; this.Preference = source.Preference; this.UpdateDate = source.UpdateDate; }
internal void ApplyChanges(MX source) { if (source == null) { throw new ArgumentNullException("source"); } this.SMTPDomainName = source.SMTPDomainName; this.Preference = source.Preference; this.UpdateDate = DateTime.Now; //---TODO: Use UTC Here? }