/// <summary>
 /// Initializes a new instance of the AddressCrossStreet class
 /// </summary>
 public AddressCrossStreet()
 {
     LocationStreet = new LocationStreet();
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the Address class
 /// </summary>
 /// <param name="ls">Location Street of the address</param>
 public Address(LocationStreet ls)
 {
     LocationStreet = ls;
 }