private void GetDataSources()

in Hands-on lab/lab-files/Tools/CustomerProfileJsonDataGenerator/DataObjects.cs [63:74]


        private void GetDataSources(string locale)
        {
            this.DsName = this.Notifier.Flow<Name>(new Name(locale));
            this.DsInternet = this.Notifier.Flow<Internet>(new Internet(locale));
            SeedNotifier notifier = this.Notifier;
            Date date = new Date("en");
            date.Locale = locale;
            this.DsDate = notifier.Flow<Date>(date);
            this.DsPhoneNumbers = this.Notifier.Flow<PhoneNumbers>(new PhoneNumbers(locale));
            this.DsAddress = this.Notifier.Flow<Bogus.DataSets.Address>(new Bogus.DataSets.Address(locale));
            this.DsCompany = this.Notifier.Flow<Bogus.DataSets.Company>(new Bogus.DataSets.Company(locale));
        }