public override void SetResults(RASRAFPanelTestOrder testOrder, ResultCollection resultCollection) { StringBuilder comment = new StringBuilder(this.m_Comment); comment = comment.Replace("[NOTDETECTEDMUTATIONLIST]", resultCollection.GetNotDetectedListString()); comment = comment.Replace("[DETECTEDMUTATIONLIST]", resultCollection.GetDetectedListString()); testOrder.Comment = comment.ToString(); base.SetResults(testOrder, resultCollection); }
public virtual void SetResults(RASRAFPanelTestOrder testOrder, ResultCollection resultCollection) { StringBuilder interpretation = new StringBuilder(); interpretation.AppendLine(this.m_InterpretationFirstLine); interpretation.AppendLine(); interpretation.Append(this.m_InterpretationBody); interpretation = interpretation.Replace("[NOTDETECTEDMUTATIONLIST]", resultCollection.GetNotDetectedListString()); interpretation = interpretation.Replace("[DETECTEDMUTATIONLIST]", resultCollection.GetDetectedListString()); testOrder.Interpretation = interpretation.ToString(); StringBuilder disclaimer = new StringBuilder(); disclaimer.AppendLine(testOrder.GetLocationPerformedComment()); disclaimer.Append(m_TestDevelopment); testOrder.ReportDisclaimer = disclaimer.ToString(); }