ATMLCommonLibrary.controls.instrument.InstrumentListControl.CallAtmlAction C# (CSharp) Method

CallAtmlAction() private method

private CallAtmlAction ( object o, AtmlActionType type ) : void
o object
type AtmlActionType
return void
        private void CallAtmlAction( object o, AtmlActionType type )
        {
            var id = o as InstrumentDescription;
            if (id != null)
            {
                OnAtmlObjectAction( id, type );
            }
        }