public void ClearAllPendingLocalNotifications(bool clearCountdownTimers)
 {
     if (WindowsNotificationManager.clearAllPendingLocalNotifications != null)
     {
         WindowsNotificationManager.clearAllPendingLocalNotifications();
     }
 }
 public void ClearPendingLocalNotification(string key, string objectId)
 {
     if (WindowsNotificationManager.clearPendingLocalNotification != null)
     {
         WindowsNotificationManager.clearPendingLocalNotification(key + objectId);
     }
 }
 public void ScheduleLocalNotification(string notificationUid, string inProgressMessage, string message, string soundName, DateTime time, string key, string objectId)
 {
     if (!Service.Get <NotificationController>().Enabled)
     {
         return;
     }
     if (WindowsNotificationManager.scheduleLocalNotification != null)
     {
         WindowsNotificationManager.scheduleLocalNotification(key + objectId, message, time);
     }
 }