private async Task DeleteAsync()
 {
     Console.WriteLine("    Do you really want to remove the ingredient? ");
     if ((await ValidationNavigation.ShowYesNoAsync()) == ConsoleKey.N)
     {
         return;
     }
     await _ingredientsController.DeleteAsync(_ingredientId);
 }