public DeliveryFee(ExpressType type, NormalFeeMethod normal, CustomFeeMethod[] customs) : this(type, normal) { TkDebug.AssertArgumentNull(normal, "normal", null); TkDebug.AssertArgumentNull(customs, "customs", null); Customs.AddRange(customs); }
private DeliveryFee(ExpressType type, NormalFeeMethod normal) { Type = type; Normal = normal; Customs = new List <CustomFeeMethod>(); }
private DeliveryFee(ExpressType type, NormalFeeMethod normal) { Type = type; Normal = normal; Customs = new List<CustomFeeMethod>(); }