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