Beispiel #1
0
        public string MultipleProjects(string teamName)
        {
            string Result = null;

            Result = projectValidator.ValidateToCheckMultipleProjects(teamName);
            if (Result.EndsWith("exist !"))
            {
                Console.ForegroundColor = ConsoleColor.Red;
                Console.WriteLine(Result);
                Console.ForegroundColor = ConsoleColor.White;
                return("0");
            }
            return(Result);
        }