/// <summary> /// Returns the list of gateways 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>gateway list</returns> public async Task <object> GetGatewaysAssignedToNotification(long NotificationID) { return(await _notificationClient.GetGatewaysAssignedToNotification(NotificationID)); }