Add project files.

This commit is contained in:
2022-09-09 11:07:33 +02:00
parent b4ddfa3c2c
commit 36c28196f4
29 changed files with 1083 additions and 0 deletions

View File

@ -0,0 +1,12 @@
using LoadStockDbFromTrans.models;
namespace LoadStockDbFromTrans.Runners
{
public interface IFileToJson
{
Dictionary<string, string> NameConverter { get; set; }
Task<List<FileModel>> FetchJsonData();
void UpDateWithSold(FileModel rec);
}
}