private string GetOperand(AggregationResultItem first, AggregationResultItem second)
 {
     if (first.Aggregation > second.Aggregation)
     {
         return ">";
     }
     else if (first.Aggregation == second.Aggregation)
     {
         return "=";
     }
     else return "<";
 }
Exemple #2
0
 private string GetOperand(AggregationResultItem first, AggregationResultItem second)
 {
     if (first.Aggregation > second.Aggregation)
     {
         return(">");
     }
     else if (first.Aggregation == second.Aggregation)
     {
         return("=");
     }
     else
     {
         return("<");
     }
 }