Example #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);
 }
Example #2
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);
        }
Example #3
0
 private DeliveryFee(ExpressType type, NormalFeeMethod normal)
 {
     Type    = type;
     Normal  = normal;
     Customs = new List <CustomFeeMethod>();
 }
Example #4
0
 private DeliveryFee(ExpressType type, NormalFeeMethod normal)
 {
     Type = type;
     Normal = normal;
     Customs = new List<CustomFeeMethod>();
 }