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