Example #1
0
 private void PopulateRoutineList()
 {
     try
     {
         _routineList = _routineManager.SelectActiveRoutinesByUserAccountIDClient(_user.UserAccountID);
         dgActiveRoutines.ItemsSource = _routineList;
     }
     catch (Exception)
     {
         MessageBox.Show("Routines could not be found.");
     }
 }