Esempio n. 1
0
        public bool AskNewQuery(string ProjectName)
        {
            Console.Write("Whats new Query?\n-> ");
            string query = Console.ReadLine().Trim();

            Console.Write("Any resolution?\n->");
            string resolution = Console.ReadLine().Trim();
            bool   Inserted   = projectValidator.ValidateNewQuery(ProjectName, query, resolution);

            return(Inserted);
        }