This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<RateV4Response> | |
<Package ID="0"> | |
<ZipOrigination>21401</ZipOrigination> | |
<ZipDestination>54937</ZipDestination> | |
<Pounds>2</Pounds> | |
<Ounces>0</Ounces> | |
<Size>LARGE</Size> | |
<Machinable>TRUE</Machinable> | |
<Zone>5</Zone> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Retrieves products by product category ids, tag ids, etc. | |
/// </summary> | |
/// <param name="productCategoryIds"></param> | |
/// <param name="tagIds"></param> | |
/// <param name="memberTypeIds"></param> | |
/// <param name="maxItems"></param> | |
/// <param name="pageNumber"></param> | |
/// <param name="pagingInfo"></param> | |
/// <param name="sortBy"></param> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// List of products, ordered by weight | |
/// </summary> | |
/// <param name="searchTerm"></param> | |
/// <param name="maxItems"></param> | |
/// <param name="pageNumber"></param> | |
/// <param name="memberTypeIds"></param> | |
/// <param name="pagingInfo"></param> | |
/// <returns>List of SearchResultItems</returns> | |
public IList<BaseProduct> SearchProducts(string searchTerm, int maxItems, int pageNumber, IList<int> memberTypeIds, out PagingInfo pagingInfo) |