internal void OnSerialized(StreamingContext content)
        {
            if (SpecialRestrictions == null)
            {
                SpecialRestrictions = new List <SpecialRestriction>();
            }

            if (AddressRestrictions == null)
            {
                AddressRestrictions = new AddressRestrictions();
            }
        }
Beispiel #2
0
 public DeliverySpecifications()
 {
     SpecialRestrictions = new List <SpecialRestriction>();
     AddressRestrictions = new AddressRestrictions();
 }