Beispiel #1
0
 public DeliveryFee(ExpressType type, NormalFeeMethod normal, CustomFeeMethod[] customs)
     : this(type, normal)
 {
     TkDebug.AssertArgumentNull(normal, "normal", null);
     TkDebug.AssertArgumentNull(customs, "customs", null);
     Customs.AddRange(customs);
 }
Beispiel #2
0
        public DeliveryFee(ExpressType type, NormalFeeMethod normal, CustomFeeMethod customs)
            : this(type, normal)
        {
            TkDebug.AssertArgumentNull(normal, "normal", null);
            TkDebug.AssertArgumentNull(customs, "customs", null);

            Customs.Add(customs);
        }