Inheritance: ItemDescriptionReference
 protected new void ControlsToData()
 {
     if (_itemDescriptionReference == null)
         _itemDescriptionReference = new ItemInstance();
     base.ControlsToData();
     var itemInstance = _itemDescriptionReference as ItemInstance;
     if (itemInstance != null)
     {
         itemInstance.SerialNumber = edtSerialNumber.GetValue<string>();
     }
 }
 public TestResults()
 {
     this._extension = new Extension();
     this._workOrder = new WorkOrder();
     this._uUT = new ItemInstance();
     this._testStation = new HardwareInstance();
     this._testProgram = new TestResultsTestProgram();
     this._testDescription = new ItemDescriptionReference();
     this._site = new Organization();
     this._resultSet = new TestGroup();
     this._references = new List<Document>();
     this._preTestRepairs = new List<Repair>();
     this._personnel = new TestResultsPersonnel();
 }
 public static bool LoadFromFile(string fileName, out ItemInstance obj)
 {
     System.Exception exception;
     return LoadFromFile(fileName, out obj, out exception);
 }
 /// <summary>
 /// Deserializes xml markup from file into an ItemInstance object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output ItemInstance 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 ItemInstance obj, out System.Exception exception)
 {
     exception = null;
     obj = default(ItemInstance);
     try
     {
         obj = LoadFromFile(fileName);
         return true;
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return false;
     }
 }
 public static bool Deserialize(string input, out ItemInstance obj)
 {
     System.Exception exception;
     return Deserialize(input, out obj, out exception);
 }
 /// <summary>
 /// Deserializes workflow markup into an ItemInstance object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output ItemInstance 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 ItemInstance obj, out System.Exception exception)
 {
     exception = null;
     obj = default(ItemInstance);
     try
     {
         obj = Deserialize(input);
         return true;
     }
     catch (System.Exception ex)
     {
         exception = ex;
         return false;
     }
 }