ATMLCommonLibrary.controls.equipment.TestStationControl.ControlsToData C# (CSharp) Method

ControlsToData() protected method

protected ControlsToData ( ) : void
return void
        protected override void ControlsToData()
        {
            if( _hardwareItemDescription == null )
                _hardwareItemDescription = new TestStationDescription11();
            base.ControlsToData();
            var testStation = _hardwareItemDescription as TestStationDescription11;
            if (testStation != null)
            {
                testStation.Instruments = testStationDescriptionInstrumentListControl1.TestStationDescriptionInstruments;
                testStation.uuid = edtUUID.GetValue<string>();
            }
        }