Ejemplo n.º 1
0
        /// <summary>
        /// Aggregate a set of Temperature statistics into this set and return the result.
        /// </summary>
        /// <param name="other"></param>
        /// <returns></returns>
        protected override void AggregateBaseDataWith(StatisticsAnalyticsResponse other)
        {
            base.AggregateBaseDataWith(other);

            LastTempRangeMin = ((TemperatureStatisticsResponse)other).LastTempRangeMin;
            LastTempRangeMax = ((TemperatureStatisticsResponse)other).LastTempRangeMax;
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Aggregate a set of CCA summary into this set and return the result.
        /// </summary>
        /// <param name="other"></param>
        /// <returns></returns>
        protected override void AggregateBaseDataWith(StatisticsAnalyticsResponse other)
        {
            base.AggregateBaseDataWith(other);

            LastTargetCCA = ((CCAStatisticsResponse)other).LastTargetCCA;
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Aggregate a set of Pass Count summary into this set and return the result.
        /// </summary>
        /// <param name="other"></param>
        /// <returns></returns>
        protected override void AggregateBaseDataWith(StatisticsAnalyticsResponse other)
        {
            base.AggregateBaseDataWith(other);

            LastPassCountTargetRange = ((PassCountStatisticsResponse)other).LastPassCountTargetRange;
        }