Ejemplo n.º 1
0
        public List <PsaCommand> GetPsaCommandsForSubAction(int subActionId, int codeBlockId)
        {
            int subActionCodeBlockLocation = GetSubActionCodeBlockLocation(subActionId, codeBlockId);

            return(CodeBlocksHandler.GetPsaCommandsForCodeBlock(subActionCodeBlockLocation));
        }
Ejemplo n.º 2
0
        public List <PsaCommand> GetPsaCommandsForActionCodeBlock(int actionId, int codeBlockId)
        {
            int actionCodeBlockLocation = GetActionCodeBlockLocation(actionId, codeBlockId);

            return(CodeBlocksHandler.GetPsaCommandsForCodeBlock(actionCodeBlockLocation));
        }