コード例 #1
0
ファイル: FinancialCalculator.cs プロジェクト: ifzz/FDK
		public FinancialCalculator(ResolvePriceHandler handler)
            : this()
		{
            if (handler == null)
                throw new ArgumentNullException(nameof(handler));

			this.handler = handler;
		}
コード例 #2
0
        public FinancialCalculator(ResolvePriceHandler handler)
            : this()
        {
            if (handler == null)
            {
                throw new ArgumentNullException(nameof(handler));
            }

            this.handler = handler;
        }