Beispiel #1
0
 public Generator()
 {
     _baseGenerator       = new BaseGenerator();
     _dateTimeGenerator   = new DateTimeGenerator();
     _collectionGenerator = new CollectionsGenerator();
     _typeDictionary      = new Dictionary <Type, Func <object> >();
     _cycleList           = new List <Type>();
     _asm = Assembly.LoadFile("C:\\Users\\Денис\\Documents\\GitHub\\Faker\\Plugins\\bin\\Debug\\Plugins.dll");
     FillDictionary();
 }
 public CollectionsGenerator()
 {
     _rand          = new Random();
     _baseGenerator = new BaseGenerator();
 }