public void EasyCat() { Console.ForegroundColor = ConsoleColor.DarkCyan; string str = @" .────────────────────────────────────────────────────────────────. | [0] Talianske tiramisu | *────────────────────────────────────────────────────────────────* .────────────────────────────────────────────────────────────────. | [1] Polesníky | *────────────────────────────────────────────────────────────────* .────────────────────────────────────────────────────────────────. | [2] Banánové lievance s čokoládou | *────────────────────────────────────────────────────────────────* .────────────────────────────────────────────────────────────────. | [3] Gyros s kuracím mäsom v tortille | *────────────────────────────────────────────────────────────────* .────────────────────────────────────────────────────────────────. | [4] Čokoládové cookies | *────────────────────────────────────────────────────────────────* .────────────────────────────────────────────────────────────────. | [5] Cesnaková polievka | *────────────────────────────────────────────────────────────────*"; Console.WriteLine(str); Console.ForegroundColor = ConsoleColor.DarkRed; string s = @" .────────────────────────────────────────────────────────────────. | [S] SPÄŤ | *────────────────────────────────────────────────────────────────* "; Console.WriteLine(s); Console.ReadLine(); char button = Convert.ToChar(Console.Read()); string buttonString = button.ToString(); switch (buttonString) { case "s": case "S": { Console.Clear(); Console.WriteLine("Späť do kategorií"); ByCategory byCategory = new ByCategory(); byCategory.SearchCat(); break; } case "0": { Console.Clear(); Recipe0 recipe0 = new Recipe0(); recipe0.Recept0(); break; } case "1": { Console.Clear(); Recipe3 recipe3 = new Recipe3(); recipe3.Recept3(); break; } case "2": { Console.Clear(); Recipe5 recipe5 = new Recipe5(); recipe5.Recept5(); break; } case "3": { Console.Clear(); Recipe6 recipe6 = new Recipe6(); recipe6.Recept6(); break; } case "4": { Console.Clear(); Recipe7 recipe7 = new Recipe7(); recipe7.Recept7(); break; } case "5": { Console.Clear(); Recipe8 recipe8 = new Recipe8(); recipe8.Recept8(); break; } default: { Console.Clear(); Easy easy = new Easy(); easy.EasyCat(); break; } } }
public void SearchCat() { Console.ForegroundColor = ConsoleColor.DarkCyan; string str = @" _ _ __ _ // _ | |/ /__ _| |_ ___ __ _ ___ _ __(_) ___ | ' // _` | __/ _ \/ _` |/ _ \| '__| |/ _ \ | . \ (_| | || __/ (_| | (_) | | | | __/ |_|\_\__,_|\__\___|\__, |\___/|_| |_|\___| |___/ "; Console.WriteLine(str); Console.ForegroundColor = ConsoleColor.DarkYellow; string cat = @" .────────────────────────────────────────────────────────────────. | [0] SLADKÉ RECEPTY | *────────────────────────────────────────────────────────────────* .────────────────────────────────────────────────────────────────. | [1] SLANÉ RECEPTY | *────────────────────────────────────────────────────────────────* .────────────────────────────────────────────────────────────────. | [2] NÍZKA NÁROČNOSŤ | *────────────────────────────────────────────────────────────────* .────────────────────────────────────────────────────────────────. | [3] STREDNÁ NÁROČNOSŤ | *────────────────────────────────────────────────────────────────*"; Console.WriteLine(cat); Console.ForegroundColor = ConsoleColor.DarkRed; string s = @" .────────────────────────────────────────────────────────────────. | [S] SPÄŤ NA VŠETKY KATEGÓRIE | *────────────────────────────────────────────────────────────────* "; Console.WriteLine(s); Console.ReadLine(); char button = Convert.ToChar(Console.Read()); string buttonString = button.ToString(); switch (buttonString) { case "s": case "S": { Console.Clear(); Console.WriteLine("Späť na vyhľadávanie"); Find findr = new Find(); findr.FindRecipe(); break; } case "0": { Console.Clear(); Sweet sweet = new Sweet(); sweet.SweetCat(); break; } case "1": { Console.Clear(); Salty salty = new Salty(); salty.SaltyCat(); break; } case "2": { Easy easy = new Easy(); easy.EasyCat(); break; } case "3": { Console.Clear(); Medium medium = new Medium(); medium.MediumCat(); break; } default: { Console.Clear(); ByCategory byCategory = new ByCategory(); byCategory.SearchCat(); break; } } }