示例#1
0
 public List <KeyValuePair <string, List <ReadingBase> > > GetDailySummary(WeatherValueType valueType, int deviceId, DateTime startDate, DateTime endDate)
 {
     return(WeatherServiceCommon.GetDailySummary(valueType, deviceId, startDate, endDate).ToList());
 }
示例#2
0
 public List <KeyValuePair <string, int> > GetWindDirectionHistory(DateTimeOffset start, DateTimeOffset end)
 {
     return(WeatherServiceCommon.GetWindDirectionHistory(start, end).ToList());
 }
示例#3
0
 public List <KeyValuePair <DeviceBase, List <ReadingBase> > > GetGenericHistory(WeatherValueType valueType, DateTimeOffset start, DateTimeOffset end)
 {
     return(WeatherServiceCommon.GetGenericHistory(valueType, start, end).ToList());
 }
示例#4
0
 public List <KeyValuePair <string, List <WindSpeedReading> > > GetWindSpeedHistory(int groupIntervalMinutes, DateTimeOffset start, DateTimeOffset end)
 {
     return(WeatherServiceCommon.GetWindSpeedHistory(groupIntervalMinutes, start, end).ToList());
 }
示例#5
0
 public List <DeviceBase> GetDevices()
 {
     return(WeatherServiceCommon.GetDevices());
 }