Beispiel #1
0
 private void Delete(int id)
 {
     if (new MessageBoxViewModel("Вы действительно хотите удалить цель?", "Удаление").ShowMessage() == true)
     {
         int index = GetIndexById(id);
         Goals.RemoveAt(index);
         goalsLogic.DeleteGoal(id);
         Count = Goals.Count;
     }
 }