Exemple #1
0
 /// <summary>
 /// Get the sent notification list for a sensor
 /// </summary>
 /// <param name="StartIndex">offset</param>
 /// <param name="Count">no of records to fetch</param>
 /// <param name="FromDate">start date</param>
 /// <param name="ToDate">end date</param>
 /// <returns>List if notifications</returns>
 public async Task <List <Notification> > GetSentNotificationListBySensor(long SensorID, int StartIndex, int Count, string FromDate, string ToDate)
 {
     return(await _notificationClient.GetSentNotificationListBySensor(SensorID, StartIndex, Count, FromDate, ToDate));
 }