コード例 #1
0
ファイル: BREFactory.cs プロジェクト: Why-Not-Sky/NxBRE
		public BREFactory(DispatchException exceptionHandler,
	                    DispatchLog logHandler,
	                    DispatchRuleResult resultHandler) {
			this.exceptionHandler = exceptionHandler;
			this.logHandler = logHandler;
		  this.resultHandler = resultHandler;
		}
コード例 #2
0
 public BREFactory(DispatchException exceptionHandler,
                   DispatchLog logHandler,
                   DispatchRuleResult resultHandler)
 {
     this.exceptionHandler = exceptionHandler;
     this.logHandler       = logHandler;
     this.resultHandler    = resultHandler;
 }
コード例 #3
0
ファイル: BRECloneFactory.cs プロジェクト: plamikcho/xbrlpoc
        public BRECloneFactory(IRulesDriver rulesDriver, DispatchRuleResult resultHandler)
        {
            if (rulesDriver == null)
                throw new BREException("A non-null IRulesDriver must be passed to BRECloneFactory");

            this.rulesDriver = rulesDriver;

            if (bref == null)	bref = new BREFactory(resultHandler);
        }
コード例 #4
0
ファイル: BRECloneFactory.cs プロジェクト: ilkerhalil/NxBRE
        public BRECloneFactory(IRulesDriver rulesDriver, DispatchRuleResult resultHandler)
        {
            if (rulesDriver == null)
            {
                throw new BREException("A non-null IRulesDriver must be passed to BRECloneFactory");
            }

            this.rulesDriver = rulesDriver;

            if (bref == null)
            {
                bref = new BREFactory(resultHandler);
            }
        }
コード例 #5
0
ファイル: BREFactory.cs プロジェクト: vkiktev/NxBRE
 public BREFactory(DispatchRuleResult resultHandler)
 {
     this.resultHandler = resultHandler;
 }
コード例 #6
0
ファイル: BREFactory.cs プロジェクト: plamikcho/xbrlpoc
 public BREFactory(DispatchRuleResult resultHandler)
 {
     this.resultHandler = resultHandler;
 }