ATMLCommonLibrary.controls.control.driver.ControlDriverControl.ControlsToData C# (CSharp) Method

ControlsToData() protected method

protected ControlsToData ( ) : void
return void
        protected override void ControlsToData()
        {
            if (_versionIdentifier == null)
                _versionIdentifier = new HardwareItemDescriptionControlDriver();
            base.ControlsToData();
            var driver = _versionIdentifier as HardwareItemDescriptionControlDriver;
            if (driver != null)
            {
                driver.Manufacturer = controlDriverManufacturerControl.ManufacturerData;
                driver.Dependencies = controlDriverDependenciesControl.Dependencies;
                driver.Platform = controlDriverPlatformControl.Platform;
                driver.Type = controlDriverSelectionControl.DriverSelect;
            }
        }