ATMLCommonLibrary.controls.instrument.TestStationDescriptionInstrumentControl.DataToControls C# (CSharp) Метод

DataToControls() приватный Метод

private DataToControls ( ) : void
Результат void
        private new void DataToControls()
        {
            if (_itemDescriptionReference != null)
            {
                var instrument =
                    _itemDescriptionReference as TestStationDescriptionInstrument;
                base.DataToControls();
                if (instrument != null)
                {
                    edtAddress.Value = instrument.Address;
                    edtId.Value = instrument.ID;
                    edtPhysicalLocation.Value = instrument.PhysicalLocation;
                }
            }
        }