public void Program_menu(RuleParser ruleParser, ESProvider exsys, FactParser fparser) { string[] choices = new string[] { "Gimme a house", "Exit" }; bool quit = false; string choice = ""; while (!quit) { Print_menu(choices); choice = Console.ReadLine(); if (choice == "q" || choice == "Q") { quit = true; } } }
public ESProvider(FactParser factParser, RuleParser ruleParser) { this.factParser = factParser; this.ruleParser = ruleParser; }