Ejemplo n.º 1
0
        public Mapper(IFunctionCompiler functionaCompiler)
        {
            if (functionaCompiler == null)
            {
                throw new ArgumentNullException(nameof(functionaCompiler));
            }

            this.functionCompiler = functionaCompiler;
        }
Ejemplo n.º 2
0
        public CashFunctionCompiler(IFunctionCompiler functionCompiler)
        {
            if (functionCompiler == null)
            {
                throw new ArgumentNullException(nameof(functionCompiler));
            }

            this.functionCompiler = functionCompiler;
            functionCash          = new Dictionary <KeyValuePair <Type, Type>, Delegate>();
        }