/// <summary>
 /// OrgAddress class constructor
 /// </summary>
 public OrgAddress()
 {
     AddressCapabilities = new List<OrgAddressAddressCapability>();
     Location = new UNLOCO();
 }
 public static bool LoadFromFile(string fileName, out UNLOCO obj, out Exception exception)
 {
     return LoadFromFile(fileName, Encoding.UTF8, out obj, out exception);
 }
 public static bool LoadFromFile(string fileName, out UNLOCO obj)
 {
     Exception exception = null;
     return LoadFromFile(fileName, out obj, out exception);
 }
 /// <summary>
 /// Deserializes xml markup from file into an UNLOCO object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output UNLOCO object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool LoadFromFile(string fileName, System.Text.Encoding encoding, out UNLOCO obj, out Exception exception)
 {
     exception = null;
     obj = default(UNLOCO);
     try
     {
         obj = LoadFromFile(fileName, encoding);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }
 public static bool Deserialize(string input, out UNLOCO obj)
 {
     Exception exception = null;
     return Deserialize(input, out obj, out exception);
 }
 /// <summary>
 /// Deserializes workflow markup into an UNLOCO object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output UNLOCO object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool Deserialize(string input, out UNLOCO obj, out Exception exception)
 {
     exception = null;
     obj = default(UNLOCO);
     try
     {
         obj = Deserialize(input);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }
 /// <summary>
 /// OrganisationDetail class constructor
 /// </summary>
 public OrganisationDetail()
 {
     CountrySpecificDetails = new OrganisationDetailCountrySpecificDetails();
     BondDetails = new List<BondDetail>();
     AccountsPayables = new List<AccountsPayable>();
     AccountsReceivables = new List<AccountsReceivable>();
     BrandNames = new List<OrganisationDetailBrandName>();
     EDICodeMappings = new List<EDICodeMapping>();
     OrganisationTypes = new List<OrganisationDetailOrganisationType>();
     EDITransmissionDetails = new OrganisationDetailEDITransmissionDetails();
     RegistrationNumbers = new List<OrganisationDetailRegistrationNumber>();
     OrgWebURLs = new List<OrgWebURL>();
     Contacts = new List<OrgContact>();
     Addresses = new List<OrganisationDetailAddress>();
     Location = new UNLOCO();
 }
 /// <summary>
 /// Movement class constructor
 /// </summary>
 public Movement()
 {
     Port = new UNLOCO();
 }