Take care of splits

This commit is contained in:
2022-09-14 17:13:55 +02:00
parent f3c41b33b0
commit b4dc4b245b
6 changed files with 157 additions and 9 deletions

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LoadStockDbFromTrans.models
{
public static class ProcName
{
public const string BYTE_INLAGG_VP = "BYTE INLÄGG VP";
public const string BYTE_UTTAG_VP = "BYTE UTTAG VP";
public const string DECIMALER_LIKVID = "DECIMALER LIKVID";
public const string DECIMALER_UTTAG_VP = "DECIMALER UTTAG VP";
public const string INLAGG_FISSION = "INLÄGG FISSION";
public const string INLOSEN_LIKVID = "INLÖSEN LIKVID";
public const string INLOSEN_UTTAG_VP = "INLÖSEN UTTAG VP";
public const string INSATTNING = "INSÄTTNING";
public const string KOPT = "KÖPT";
public const string SPLIT_INLÄGG_VP = "SPLIT INLÄGG VP";
public const string SPLIT_UTTAG_VP = "SPLIT UTTAG VP";
public const string SALT = "SÅLT";
public const string UTDELNING = "UTDELNING";
public const string UTL_KUPSKATT = "UTL KUPSKATT";
public const string UTTAG = "UTTAG";
}
}