Class ShippingService
- Namespace
- Dynamicweb.Ecommerce.Orders
- Assembly
- Dynamicweb.Ecommerce.dll
public class ShippingService : ICacheStorage<string, Shipping>, ICacheStorage<string>, ICacheStorage
- Inheritance
-
ShippingService
- Implements
- Inherited Members
Methods
ClearCache()
Clears cached shippings.
public void ClearCache()
ClearCache(LanguageBasedKey<string>)
[Obsolete("Is not used anymore")]
public void ClearCache(LanguageBasedKey<string> key)
Parameters
keyLanguageBasedKey<string>
ClearCache(IEnumerable<LanguageBasedKey<string>>)
[Obsolete("Is not used anymore")]
public void ClearCache(IEnumerable<LanguageBasedKey<string>> keys)
Parameters
keysIEnumerable<LanguageBasedKey<string>>
ClearCache(IEnumerable<string>)
Resets the specified keys to the default value for objects stored in the object cache
public void ClearCache(IEnumerable<string> keys)
Parameters
keysIEnumerable<string>- Keys to reset
ClearCache(string)
Resets the specified key to the default value for objects stored in the object cache
public void ClearCache(string key)
Parameters
keystring- Key to reset
Clone(Shipping)
Clones this instance.
public Shipping Clone(Shipping shipping)
Parameters
shippingShipping
Returns
Examples
class MyPage : System.Web.UI.Page
{
private Shipping shipping;
public void DoSave()
{
Shipping theShipping = new Shipping();
theShipping = Services.Shipping.Clone(shipping);
theShipping.ID = string.Empty;
theShipping.Save(theShipping.ID);
}
}
CopyShipping(string)
Copies the shipping, fees and country relations based on the shippingId, appending "(Copy)" to the name.
public void CopyShipping(string shippingId)
Parameters
shippingIdstring- The id of the shipping to copy.
Delete(string)
Deletes the shipping with specified id.
public void Delete(string shippingId)
Parameters
shippingIdstring- The id.
Delete(string, string)
Deletes the shipping with specified id and language
[Obsolete("Use Delete(String) instead")]
public void Delete(string shippingId, string languageId)
Parameters
DeleteAll()
Deletes all shippings.
public void DeleteAll()
DeleteByLanguage(string)
Deletes translations by language.
public void DeleteByLanguage(string languageId)
Parameters
languageIdstring- The language id.
GetDefaultShippingMethod(string, bool)
Gets the default shipping method.
public Shipping GetDefaultShippingMethod(string countryCode, bool onlyActive)
Parameters
countryCodestring- The country code.
onlyActivebool- If set to
true, only active shipping methods will be included to the result, otherwise inactive will be also included.
Returns
GetDefaultShippingMethod(string, string)
Gets the default shipping method.
[Obsolete("Use the overload without languageId and then use Translations on the shipping.")]
public Shipping GetDefaultShippingMethod(string languageId, string countryCode)
Parameters
Returns
GetDefaultShippingMethod(string, string, bool)
Gets the default shipping method.
[Obsolete("Use the overload without languageId and then use Translations on the shipping.")]
public Shipping GetDefaultShippingMethod(string languageId, string countryCode, bool onlyActive)
Parameters
languageIdstring- The language id.
countryCodestring- The country code.
onlyActivebool- If set to
true, only active shipping methods will be included to the result, otherwise inactive will be also included.
Returns
GetShipping(string)
Gets the shipping methods that has relation to any country.
public Shipping GetShipping(string shippingId)
Parameters
shippingIdstring
Returns
GetShipping(string, string)
Gets the shipping methods that has relation to any country.
[Obsolete("Use the overload without languageId and then use Translations on the shipping.")]
public Shipping GetShipping(string shippingId, string languageId)
Parameters
Returns
GetShipping(string, string, string)
Gets the shipping methods that has relation to specified country.
public Shipping GetShipping(string shippingId, string countryCode, string regionCode)
Parameters
Returns
GetShipping(string, string, string, string)
Gets the shipping methods that has relation to specified country.
[Obsolete("Use the overload without languageId and then use Translations on the shipping.")]
public Shipping GetShipping(string shippingId, string languageId, string countryCode, string regionCode)
Parameters
Returns
GetShippings()
Gets the shipping methods with country relations.
public IEnumerable<Shipping> GetShippings()
Returns
GetShippings(string)
Gets the shipping methods with country relations.
[Obsolete("Use the overload without languageId and then use Translations on the shipping.")]
public IEnumerable<Shipping> GetShippings(string languageId)
Parameters
languageIdstring- The language id.
Returns
GetShippings(string, string, bool)
Gets the shipping methods with country relations.
public IEnumerable<Shipping> GetShippings(string countryCode, string regionCode, bool onlyActive)
Parameters
countryCodestring- The country code.
regionCodestring- The region code.
onlyActivebool- If set to
true, only active shipping methods will be included to the result, otherwise inactive will be also included.
Returns
GetShippings(string, string, string)
Gets the shipping methods with country relations.
[Obsolete("Use the overload without languageId and then use Translations on the shipping.")]
public IEnumerable<Shipping> GetShippings(string languageId, string countryCode, string regionCode)
Parameters
languageIdstring- The language id.
countryCodestring- The country code.
regionCodestring- The region code.
Returns
GetShippings(string, string, string, bool)
Gets the shipping methods with country relations.
[Obsolete("Use the overload without languageId and then use Translations on the shipping.")]
public IEnumerable<Shipping> GetShippings(string languageId, string countryCode, string regionCode, bool onlyActive)
Parameters
languageIdstring- The language id.
countryCodestring- The country code.
regionCodestring- The region code.
onlyActivebool- If set to
true, only active shipping methods will be included to the result, otherwise inactive will be also included.
Returns
GetShippingsForUser(User, string, string)
Gets the active shipping methods with the suitable country code and region code for the user.
public IEnumerable<Shipping> GetShippingsForUser(User user, string countryCode, string regionCode)
Parameters
userUser- The User. Use null for anonymous user.
countryCodestring- The country code.
regionCodestring- The region/state code.
Returns
- IEnumerable<Shipping>
- A collection of shipping methods.
GetShippingsWithoutRegions(bool)
Gets the shipping methods with country relations.
public IEnumerable<Shipping> GetShippingsWithoutRegions(bool onlyActive)
Parameters
onlyActivebool- If set to
true, only active shipping methods will be included to the result, otherwise inactive will be also included.
Returns
GetShippingsWithoutRegions(string)
Gets the shipping methods with country relations.
[Obsolete("Use the overload without languageId and then use Translations on the shipping.")]
public IEnumerable<Shipping> GetShippingsWithoutRegions(string languageId)
Parameters
languageIdstring- The language id.
Returns
GetShippingsWithoutRegions(string, bool)
Gets the shipping methods with country relations.
[Obsolete("Use the overload without languageId and then use Translations on the shipping.")]
public IEnumerable<Shipping> GetShippingsWithoutRegions(string languageId, bool onlyActive)
Parameters
languageIdstring- The language id.
onlyActivebool- If set to
true, only active shipping methods will be included to the result, otherwise inactive will be also included.
Returns
Save(Shipping)
Saves the specified id.
public void Save(Shipping shipping)
Parameters
shippingShipping- The shipping.