Exemplo n.º 1
0
        public ExecutionResult(int integerResult)
        {
            Kind = KIND_OF_RESULT.INTEGER;

            this.IntegerResult = integerResult;
        }
Exemplo n.º 2
0
        public ExecutionResult(Boolean booleanResult)
        {
            Kind = KIND_OF_RESULT.BOOLEAN;

            this.BooleanResult = booleanResult;
        }