public override void Cancel <T>() { NotifierUWP notifier = new NotifierUWP(); foreach (T item in manager.GetNotiList <T>()) { notifier.Cancel(item.NotiId.ToString()); } }
public override void Cancel <T>() { NotifierAndroid notifier = new(); foreach (T item in manager.GetNotiList <T>()) { notifier.Cancel(item.NotiId); } }
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()); }