public FirstnameGenerator(
     IFirstnameRecordsLoader firstnameRecordsLoader,
     IListRandomiser listRandomiser)
 {
     _firstnameRecordsLoader = firstnameRecordsLoader;
     _listRandomiser         = listRandomiser;
 }
Exemple #2
0
 public LastnameGenerator(
     ILastnameRecordsLoader lastnameRecordsLoader,
     IListRandomiser listRandomiser)
 {
     _lastnameRecordsLoader = lastnameRecordsLoader;
     _listRandomiser        = listRandomiser;
 }
Exemple #3
0
 public BirthLocationGenerator
 (
     IWorldCitiesLoader worldCitiesLoader,
     IListRandomiser listRandomiser
 )
 {
     _worldCitiesLoader = worldCitiesLoader;
     _listRandomiser    = listRandomiser;
 }
 public GrowthSetGenerator
 (
     IPercentileGrowthSetRepository percentileGrowthSetRepository,
     IListRandomiser listRandomiser
 )
 {
     _percentileGrowthSetRepository = percentileGrowthSetRepository;
     _listRandomiser = listRandomiser;
 }
 public CountriesGenerator
 (
     IListRandomiser listRandomiser,
     IRandomiser <int> intRandomiser,
     IMultipleValuesRandomiser <int> multipleValuesRandomiser
 )
 {
     _listRandomiser           = listRandomiser;
     _intRandomiser            = intRandomiser;
     _multipleValuesRandomiser = multipleValuesRandomiser;
 }