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

DataToControls() protected method

protected DataToControls ( ) : void
return void
        protected override void DataToControls()
        {
            base.DataToControls();
            var testStation = _hardwareItemDescription as TestStationDescription11;
            if (testStation != null)
            {
                base.DataToControls();
                testStationDescriptionInstrumentListControl1.TestStationDescriptionInstruments = testStation.Instruments;
                capabilitiesControl1.TestStationDescription = testStation;
                edtUUID.Value = testStation.uuid;
            }
        }