Ejemplo n.º 1
0
        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);
        }
Ejemplo n.º 2
0
        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();
        }
Ejemplo n.º 3
0
 public override void SetResults(RASRAFPanelTestOrder testOrder, ResultCollection resultCollection)
 {
     testOrder.Comment = this.m_Comment;
     base.SetResults(testOrder, resultCollection);
 }