示例#1
0
 public CohortCountDTO(PreflightResources preflight, PatientCount count) : this(preflight)
 {
     QueryId = count.QueryId.ToString();
     if (count != null)
     {
         Result = new PatientCountResultDTO
         {
             Value         = count.Value,
             SqlStatements = count.SqlStatements
         };
     }
 }
示例#2
0
 public CohortCountDTO(PreflightResources preflight, PatientCount count) : this(preflight)
 {
     QueryId = count.QueryId.ToString();
     if (count != null)
     {
         Result = new PatientCountResultDTO
         {
             PlusMinus              = count.PlusMinus,
             SqlStatements          = count.SqlStatements,
             Value                  = count.Value,
             WithinLowCellThreshold = count.WithinLowCellThreshold
         };
     }
 }