/// <summary>
 /// Initializes a new instance of the <see cref="Geboorte" /> class.
 /// </summary>
 /// <param name="datum">datum.</param>
 /// <param name="land">land.</param>
 /// <param name="plaats">plaats.</param>
 /// <param name="inOnderzoek">inOnderzoek.</param>
 public Geboorte(DatumOnvolledig datum = default(DatumOnvolledig), Waardetabel land = default(Waardetabel), Waardetabel plaats = default(Waardetabel), GeboorteInOnderzoek inOnderzoek = default(GeboorteInOnderzoek))
 {
     this.Datum       = datum;
     this.Land        = land;
     this.Plaats      = plaats;
     this.InOnderzoek = inOnderzoek;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GeboorteAllOf" /> class.
 /// </summary>
 /// <param name="land">land.</param>
 /// <param name="plaats">plaats.</param>
 /// <param name="inOnderzoek">inOnderzoek.</param>
 public GeboorteAllOf(Waardetabel land = default(Waardetabel), Waardetabel plaats = default(Waardetabel), GeboorteInOnderzoek inOnderzoek = default(GeboorteInOnderzoek))
 {
     this.Land        = land;
     this.Plaats      = plaats;
     this.InOnderzoek = inOnderzoek;
 }