mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 14:37:16 +00:00
SP-API stock reconciliation
Amazon had depreciated a number of reports that were used for stock reconciliation. Application now uses the new fba ledger report to reconcile. It is currently untested, as this requires data from Amazon. Methods that require testing will return a 'NotImplementedException'. Also, removed the depreciated ILMerge and replaced with ILRepack. Plus much more tidying up, and improvements.
This commit is contained in:
@@ -8,18 +8,15 @@ namespace bnhtrade.Core.Test.Logic
|
||||
{
|
||||
public class Logic
|
||||
{
|
||||
private string sqlConnectionString;
|
||||
public Logic(string sqlConnectionString)
|
||||
public Logic()
|
||||
{
|
||||
this.sqlConnectionString = sqlConnectionString;
|
||||
|
||||
// method you want to start here
|
||||
UpdateXeroWithAmzonSettlementData();
|
||||
|
||||
}
|
||||
public void UpdateXeroWithAmzonSettlementData()
|
||||
{
|
||||
var instance = new bnhtrade.Core.Logic.Export.AmazonSettlement(sqlConnectionString);
|
||||
var instance = new bnhtrade.Core.Logic.Export.AmazonSettlement();
|
||||
instance.ToInvoice();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user