Example #1
0
 public PoemGenMock(IDictionaryRepository dictionaryRepository,
                    Config config,
                    Converter converter,
                    IFootRandomGenerator footRandomGenerator,
                    INodeRandomGenerator nodeRandomGenerator,
                    IWordRandomGenerator wordRandomGenerator)
     : base(dictionaryRepository, config, converter, footRandomGenerator, nodeRandomGenerator, wordRandomGenerator)
 {
 }
Example #2
0
 public PoemGen(IDictionaryRepository dictionaryRepository,
                Config config,
                Converter converter,
                IFootRandomGenerator footRandomGenerator,
                INodeRandomGenerator nodeRandomGenerator,
                IWordRandomGenerator wordRandomGenerator)
 {
     this.dictionaryRepository = dictionaryRepository;
     this.config              = config;
     this.converter           = converter;
     this.footRandomGenerator = footRandomGenerator;
     this.nodeRandomGenerator = nodeRandomGenerator;
     this.wordRandomGenerator = wordRandomGenerator;
 }