Exemplo n.º 1
0
 private void Delete()
 {
     _dialogService.ShowDialog("ClinicNotificationView", r =>
     {
         if (r.Result == ButtonResult.Yes)
         {
             repo.Delete(SelectedVisit);
             Visits     = new ObservableCollection <DoctorVisit>(repo.GetAll());
             VisitCount = repo.GetDoctorVisitCount().ToString();
         }
     });
 }