public static TestAddressBuilder TestAddressZurich() { return(TestAddressBuilder.Create() .WithStreet("Bahnhofstrasse") .WithStreetNumber(450) .WithPlz(8000) .WithCity("Zurich") .AddCountry(TestCountrySwitzerland().Build())); }
public static TestAddressBuilder TestAddressWallisellen() { return(TestAddressBuilder.Create() .WithStreet("Rohrstrasse") .WithStreetNumber(12) .WithPlz(8304) .WithCity("Wallislellen") .AddCountry(TestCountrySwitzerland().Build())); }