Exemple #1
0
        public string GetCombination()
        {
            string combination = _readService.ReadLine();

            while (!_refereeService.IsValid(combination))
            {
                _writeService.Write("Rule 4 chars picked in this list: r,j,v,b,o,n :");
                combination = _readService.ReadLine();
            }

            return(combination);
        }