public Method(ShippingCarrier carrier) { if (carrier == null) { throw new ShippingException("Method.ctor(carrier=null)"); } m_Carrier = carrier; }
public Package(ShippingCarrier carrier) { if (carrier == null) { throw new ShippingException("Template.ctor(carrier=null)"); } m_Carrier = carrier; }
public Service(ShippingCarrier carrier) { if (carrier == null) { throw new ShippingException("Service.ctor(carrier=null)"); } m_Carrier = carrier; }