mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-05-18 19:48:23 +00:00
Migration from Amazon MWS to Selling Partner API
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using FikaAmazonAPI.Utils;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Configuration;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace bnhtrade.Core.Data.Amazon.SellingPartnerAPI
|
||||
{
|
||||
public class Defaults
|
||||
{
|
||||
public MarketPlace MarketPlaceId()
|
||||
{
|
||||
return MarketPlace.GetMarketPlaceByID(ConfigurationManager.AppSettings["SpapiMarketplaceId"]);
|
||||
}
|
||||
public string MarketPlaceIdAsString()
|
||||
{
|
||||
return ConfigurationManager.AppSettings["SpapiMarketplaceId"];
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user