public ParagraphProvider(uint count, uint minSentences = 5, uint maxSentences = 10)
 {
     _count        = count;
     _generator    = new SentenceGenerator();
     _minSentences = minSentences;
     _maxSentences = maxSentences;
 }
 public SentenceProvider()
 {
     _generator = new SentenceGenerator();
 }