private void SearchCoffee()
        {
            int    id     = userIO.ReadInt("Enter Coffee Id", 0, 10);
            Coffee coffee = repository.ReadById(id);

            View.DisplayCoffee(coffee);
        }