mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 06:27:15 +00:00
29 lines
812 B
C#
29 lines
812 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bnhtrade.Core.Test.AmazonMWS
|
|
{
|
|
public class Report
|
|
{
|
|
private string sqlConnectionString;
|
|
public Report(string sqlConnectionString)
|
|
{
|
|
this.sqlConnectionString = sqlConnectionString;
|
|
|
|
// method you want to start here
|
|
GetRport();
|
|
|
|
}
|
|
public void GetRport()
|
|
{
|
|
string mwsReportEnum = "_GET_FBA_FULFILLMENT_INVENTORY_RECEIPTS_DATA_";
|
|
DateTime start = new DateTime(2020, 10, 01);
|
|
DateTime finish = new DateTime(2020, 11, 03);
|
|
var result = new bnhtrade.Core.AmazonReport().GetMwsReportByPeriod(mwsReportEnum, start, finish, 12, 30);
|
|
}
|
|
}
|
|
}
|