public static TelecommunicationsNumberBuilder WithDefaults(this TelecommunicationsNumberBuilder @this)
        {
            var faker = @this.Session.Faker();

            @this.WithCountryCode(faker.Phone.PhoneNumber("####"));
            @this.WithContactNumber(faker.Phone.PhoneNumber("## ## ##"));
            @this.WithDescription(faker.Lorem.Sentence());
            @this.WithContactMechanismType(faker.Random.ListItem(@this.Session.Extent <ContactMechanismType>()));

            return(@this);
        }