mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 14:37:16 +00:00
27 lines
624 B
C#
27 lines
624 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace bnhtrade.Core.Test.Sku
|
|
{
|
|
public class Sku
|
|
{
|
|
private string sqlConnectionString;
|
|
public Sku(string sqlConnectionString)
|
|
{
|
|
this.sqlConnectionString = sqlConnectionString;
|
|
|
|
// method you want to start here
|
|
UpdateFbaPricing();
|
|
|
|
}
|
|
public void UpdateFbaPricing()
|
|
{
|
|
var instance = new bnhtrade.Core.Logic.Sku.Price.FbaPricing(sqlConnectionString);
|
|
instance.Update();
|
|
}
|
|
}
|
|
}
|