コード例 #1
0
 public override ShippingRate EstimateShippingCost(ShippingSession session, IShippingContext context, Shipment shipment)
 {
     throw new ShippingException("Not supported");
 }
コード例 #2
0
 public override Label CreateLabel(ShippingSession session, IShippingContext context, Shipment shipment)
 {
     throw new ShippingException("Not supported");
 }
コード例 #3
0
 public override Address ValidateAddress(ShippingSession session, IShippingContext context, Address address, out ValidateShippingAddressException error)
 {
     throw new ShippingException("Not supported");
 }
コード例 #4
0
ファイル: ShippoSystem.cs プロジェクト: uzbekdev1/nfx
 public override ShippingRate EstimateShippingCost(ShippingSession session, IShippingContext context, Shipment shipment)
 {
     return(EstimateShippingCost((ShippoSession)session, context, shipment));
 }
コード例 #5
0
ファイル: ManualSystem.cs プロジェクト: filmor/nfx
 public override TrackInfo TrackShipment(ShippingSession session, IShippingContext context, string carrierID, string trackingNumber)
 {
     return(TrackShipment((ManualSession)session, context, carrierID, trackingNumber));
 }
コード例 #6
0
ファイル: ShippoSystem.cs プロジェクト: uzbekdev1/nfx
 public override string GetTrackingURL(ShippingSession session, IShippingContext context, string carrierID, string trackingNumber)
 {
     return(GetTrackingURL((ShippoSession)session, context, carrierID, trackingNumber));
 }
コード例 #7
0
ファイル: ShippoSystem.cs プロジェクト: uzbekdev1/nfx
 public override Address ValidateAddress(ShippingSession session, IShippingContext context, Address address, out ValidateShippingAddressException error)
 {
     return(ValidateAddress((ShippoSession)session, context, address, out error));
 }
コード例 #8
0
ファイル: ShippoSystem.cs プロジェクト: uzbekdev1/nfx
 public override Label CreateLabel(ShippingSession session, IShippingContext context, Shipment shipment)
 {
     return(CreateLabel((ShippoSession)session, context, shipment));
 }
コード例 #9
0
ファイル: ShippoSystem.cs プロジェクト: uzbekdev1/nfx
 public override TrackInfo TrackShipment(ShippingSession session, IShippingContext context, string carrierID, string trackingNumber)
 {
     // spol 20170412: redirect to carrier's tracking page for now; use the method below to enable Shippo tracking
     return(base.TrackShipment(session, context, carrierID, trackingNumber));
 }
コード例 #10
0
ファイル: ShippoSystem.cs プロジェクト: dotnetchris/nfx
 public override TrackInfo TrackShipment(ShippingSession session, IShippingContext context, string trackingNumber)
 {
     return(TrackShipment((ShippoSession)session, context, trackingNumber));
 }
コード例 #11
0
ファイル: ShippoSystem.cs プロジェクト: dotnetchris/nfx
 public override Exception ValidateAddress(ShippingSession session, IShippingContext context, Address address)
 {
     return(ValidateAddress((ShippoSession)session, context, address));
 }
コード例 #12
0
ファイル: ShippoSystem.cs プロジェクト: dotnetchris/nfx
 public override Label CreateReturnLabel(ShippingSession session, IShippingContext context, Shipment shipment, object labelID)
 {
     return(CreateReturnLabel((ShippoSession)session, context, shipment, labelID));
 }
コード例 #13
0
ファイル: ShippoSystem.cs プロジェクト: itadapter/nfx
 public override Label CreateLabel(ShippingSession session, IShippingContext context, Shipment shipment)
 {
     return CreateLabel((ShippoSession)session, context, shipment);
 }
コード例 #14
0
ファイル: ShippoSystem.cs プロジェクト: itadapter/nfx
 public override TrackInfo TrackShipment(ShippingSession session, IShippingContext context, string trackingNumber)
 {
     return TrackShipment((ShippoSession)session, context, trackingNumber);
 }
コード例 #15
0
ファイル: ShippoSystem.cs プロジェクト: itadapter/nfx
 public override Label CreateReturnLabel(ShippingSession session, IShippingContext context, Shipment shipment, object labelID)
 {
     return CreateReturnLabel((ShippoSession)session, context, shipment, labelID);
 }
コード例 #16
0
ファイル: ShippoSystem.cs プロジェクト: filmor/nfx
 public override Financial.Amount?EstimateShippingCost(ShippingSession session, IShippingContext context, Shipment shipment)
 {
     return(EstimateShippingCost((ShippoSession)session, context, shipment));
 }