Beispiel #1
0
 public static TestChildBuilder TestChildNull()
 {
     return(TestChildBuilder.Create()
            .WithName(null)
            .WithDateOfBirth(DateTime.ParseExact("12.02.2015", "dd.MM.yyyy", CultureInfo.InvariantCulture)));
 }
Beispiel #2
0
 public static TestChildBuilder TestChildHanna()
 {
     return(TestChildBuilder.Create()
            .WithName("Hanna")
            .WithDateOfBirth(DateTime.ParseExact("20.03.2012", "dd.MM.yyyy", CultureInfo.InvariantCulture)));
 }