Beispiel #1
0
        public override void Cancel <T>()
        {
            NotifieriOS   notifier   = new NotifieriOS();
            List <string> cancelList = new List <string>();

            foreach (T item in manager.GetNotiList <T>())
            {
                cancelList.Add(item.NotiId.ToString());
            }

            notifier.Cancel(cancelList.ToArray());
        }