Exemplo n.º 1
0
        public NumbersToText()
        {
            _zeroDictionary  = new ZeroDictionary();
            _minusDictionary = new MinusDictionary();

            INumericalParser innerParser = new BillionParser();

            innerParser      = new MillionsParser(innerParser);
            innerParser      = new ThousandsParser(innerParser);
            _numericalParser = new BelowThousandParser(innerParser);
        }
Exemplo n.º 2
0
 public BelowTen()
 {
     _oneDictionary = new OneDictionary();
     _twoDictionary = new TwoDictionary();
 }