ATMLCommonLibrary.controls.equipment.TestStationControl.ControlsToData C# (CSharp) 메소드

ControlsToData() 보호된 메소드

protected ControlsToData ( ) : void
리턴 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>();
            }
        }