Ejemplo n.º 1
0
 public Statistic(LunchTimeService.StatisticData statistic)
 {
     this.Name = statistic.Name;
     this.Count = statistic.Count;
     this.Min = statistic.Min;
     this.Max = statistic.Max;
     this.Range = statistic.Range;
     this.Mean = statistic.Mean;
     this.Median = statistic.Median;
     this.StandardDeviation = statistic.StandardDeviation;
     this.ConfidenceInterval = statistic.ConfidenceInterval;
 }
Ejemplo n.º 2
0
 public ArrivalTime(LunchTimeService.ArrivalTimeData arrivalTime)
 {
     this.Restaurant = arrivalTime.Restaurant.Name;
     this.TimeArrived = arrivalTime.TimeArrived;
 }