/// <summary>
 /// Saves a <see cref="FixedRateShippingGatewayMethod"/>
 /// </summary>
 /// <param name="shippingGatewayMethod"></param>
 public override void SaveShippingGatewayMethod(IShippingGatewayMethod shippingGatewayMethod)
 {
     GatewayProviderService.Save(shippingGatewayMethod.ShipMethod);
     ShippingFixedRateTable.Save(GatewayProviderService, RuntimeCache, ((FixedRateShippingGatewayMethod)shippingGatewayMethod).RateTable);
 }