コード例 #1
0
ファイル: CallCharge.cs プロジェクト: jasatwal/skybill
        public CallCharge(TelephoneNumber called, TimeSpan duration, Money cost)
        {
            Check.Argument.IsNotNull(called, nameof(called));
            Check.Argument.IsNotNull(cost, nameof(cost));

            this.called = called;
            this.duration = duration;
            this.cost = cost;
        }