private void CopyMembers(DiagnosticMessage old)
 {
     this.entityName   = old.entityName;
     this.networkName  = old.networkName;
     this.serviceName  = old.serviceName;
     this.status       = old.status;
     this.errorMessage = old.errorMessage;
 }
 private void InitializeMembers()
 {
     this.entityName   = String.Empty;
     this.networkName  = String.Empty;
     this.serviceName  = String.Empty;
     this.status       = DiagnosticMessageStatus.OK;
     this.errorMessage = String.Empty;
 }
 private void CopyMembers(DiagnosticMessage old)
 {
     this.entityName = old.entityName;
     this.networkName = old.networkName;
     this.serviceName = old.serviceName;
     this.status = old.status;
     this.errorMessage = old.errorMessage;
 }
 private void InitializeMembers()
 {
     this.entityName = String.Empty;
     this.networkName = String.Empty;
     this.serviceName = String.Empty;
     this.status = DiagnosticMessageStatus.OK;
     this.errorMessage = String.Empty;
 }