/// <summary>
 /// PackingLine class constructor
 /// </summary>
 public PackingLine()
 {
     _uNDGCollection = new List<UNDG>();
     _packingLineCollection = new List<PackingLine>();
     _packedItemCollection = new List<PackingLinePackedItem>();
     _customizedFieldCollection = new List<CustomizedField>();
     _weightUnit = new UnitOfWeight();
     _volumeUnit = new UnitOfVolume();
     _vehicle = new Vehicle();
     _requiredTemperatureUnit = new CodeDescriptionPair1Char();
     _portMessaging = new PortMessaging();
     _packType = new PackageType();
     _linePriceCurrency = new Currency();
     _lengthUnit = new UnitOfLength();
     _countryOfOrigin = new Country();
     _commodity = new Commodity();
     _billType = new WayBillType();
 }
 public static bool LoadFromFile(string fileName, out Vehicle obj)
 {
     Exception exception = null;
     return LoadFromFile(fileName, out obj, out exception);
 }
 public static bool Deserialize(string input, out Vehicle obj)
 {
     Exception exception = null;
     return Deserialize(input, out obj, out exception);
 }
 /// <summary>
 /// Deserializes xml markup from file into an Vehicle object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output Vehicle 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, out Vehicle obj, out Exception exception)
 {
     exception = null;
     obj = default(Vehicle);
     try
     {
         obj = LoadFromFile(fileName);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }
 /// <summary>
 /// Deserializes workflow markup into an Vehicle object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output Vehicle 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 Vehicle obj, out Exception exception)
 {
     exception = null;
     obj = default(Vehicle);
     try
     {
         obj = Deserialize(input);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }