示例#1
0
        public void RemoveBreakFinishedToastNotificationSchedule(string id = null)
        {
            var removedIds = _toastNotificationsService.RemoveBreakFinishedToastNotificationSchedule(id);

            foreach (var removedId in removedIds)
            {
                RemoveFromNotifications(removedId);
            }
            RemoveFromNotifications(id);
        }
 public void RemoveBreakFinishedToastNotificationSchedule(string id = null)
 {
     _toastNotificationsService.RemoveBreakFinishedToastNotificationSchedule(id);
     RemoveFromNotifications(id);
 }