Exemplo n.º 1
0
        private void ShowDesignOptionsDependingOnType(string type)
        {
            switch (type)
            {
            case "1":
                print.RingDesignOptions();

                string     option       = ChooseOption();
                BuildQuery selectedRock = new BuildQuery();
                selectedRock.getRockInfo(int.Parse(type));
                break;

            case "2":
                print.NecklaceDesignOptions();
                break;

            default:
                print.InvalidOptionError();
                break;
            }
        }