コード例 #1
0
 /// <summary>
 /// Returns the list of sensors that belongs to user based on the notification they are assigned to.
 /// </summary>
 /// <param name="NotificationID">Filters list to sensors that belong to this notification id</param>
 /// <returns>sensor list</returns>
 public async Task <object> GetSensorsAssignedToNotification(long NotificationID)
 {
     return(await _notificationClient.GetSensorsAssignedToNotification(NotificationID));
 }