本文整理汇总了C#中IGatewayProviderService.GetShipCountry方法的典型用法代码示例。如果您正苦于以下问题:C# IGatewayProviderService.GetShipCountry方法的具体用法?C# IGatewayProviderService.GetShipCountry怎么用?C# IGatewayProviderService.GetShipCountry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IGatewayProviderService
的用法示例。
在下文中一共展示了IGatewayProviderService.GetShipCountry方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetValidatedShipCountry
/// <summary>
/// Utility extension to return a validated <see cref="IShipCountry"/> from a shipment.
///
/// For inventory and shipmethod selection purposes, <see cref="IShipment"/>s must be mapped to a single WarehouseCatalog (otherwise it should have been split into multiple shipments).
///
/// </summary>
/// <param name="shipment"></param>
/// <param name="gatewayProviderService"></param>
/// <returns></returns>
public static Attempt<IShipCountry> GetValidatedShipCountry(this IShipment shipment, IGatewayProviderService gatewayProviderService)
{
var visitor = new WarehouseCatalogValidationVisitor();
shipment.Items.Accept(visitor);
// quick validation of shipment
if (visitor.CatalogCatalogValidationStatus != WarehouseCatalogValidationVisitor.CatalogValidationStatus.Ok)
{
LogHelper.Error<ShippingGatewayProviderBase>("ShipMethods could not be determined for Shipment passed to GetAvailableShipMethodsForDestination method. Validator returned: " + visitor.CatalogCatalogValidationStatus, new ArgumentException("merchWarehouseCatalogKey"));
return visitor.CatalogCatalogValidationStatus ==
WarehouseCatalogValidationVisitor.CatalogValidationStatus.ErrorMultipleCatalogs
? Attempt<IShipCountry>.Fail(
new InvalidDataException("Multiple CatalogKeys found in Shipment Items"))
: Attempt<IShipCountry>.Fail(new InvalidDataException("No CatalogKeys found in Shipment Items"));
}
return Attempt<IShipCountry>.Succeed(gatewayProviderService.GetShipCountry(visitor.WarehouseCatalogKey, shipment.ToCountryCode));
}