Ejemplo n.º 1
0
 public async void DeleteEvent(Event item)
 {
     if (await _databaseConnector.DeleteEvent(item) == false)
     {
         return;
     }
     Collection.Remove(item);
     CollectionChanged?.Invoke();
     CrossLocalNotifications.Current.Cancel(item.Id);
 }