Exemple #1
0
 public void OnPost()
 {
     ValidDates = _ws.GetValidDates();
     AvgForDate = _ws.GetAvgTempByDate(SelectedDate.Value, SelectedLocation);
     if (AvgForDate != null)
     {
         AvgForDate = Math.Round(AvgForDate.Value, 2);
     }
 }