Skip to content
Snippets Groups Projects
Commit c4daa418 authored by Radek Puš's avatar Radek Puš
Browse files

import layout for airbank

parent 3893caa0
No related branches found
No related tags found
No related merge requests found
......@@ -11,19 +11,19 @@ namespace Core.BusinessLogic.ImportCSVLogic
public string AccountType { get; set; }
[Name("číslo účtu")]
public string Account { get; set; }
[Name("datum zaúčtování")]
[Name(new string[] { "datum zaúčtování", "datum provedení" })]
public string Date { get; set; }
[Name("částka")]
[Name(new string[] { "částka", "částka v měně účtu" })]
public string Amount { get; set; }
[Name("měna")]
[Name(new string[] { "měna", "původní měna úhrady" })]
public string Currency { get; set; }
[Name("zůstatek")]
public string SenderAccountBallance { get; set; }
[Name(new string[] { "číslo účtu protiúčtu", "protiúčet" })]
[Name(new string[] { "číslo účtu protiúčtu", "protiúčet", "číslo účtu protistrany" })]
public string RecipientAccount { get; set; }
[Name(new string[] { "kód banky protiúčtu","bankovní kód protiúčtu" })]
[Name(new string[] { "kód banky protiúčtu", "bankovní kód protiúčtu" })]
public string RecipientBankCode { get; set; }
[Name(new string[]{"název účtu protiúčtu", "název protiúčtu"})]
[Name(new string[] { "název účtu protiúčtu", "název protiúčtu","název účtu protistrany" })]
public string RecipientAccountName { get; set; }
[Name("konstantní symbol")]
public string ConstantSymbol { get; set; }
......@@ -31,11 +31,11 @@ namespace Core.BusinessLogic.ImportCSVLogic
public string VariableSymbol { get; set; }
[Name("specifický symbol")]
public string SpecificSymbol { get; set; }
[Name(new string[] { "označení operace","typ transakce" })]
[Name(new string[] { "označení operace", "typ transakce", "typ úhrady" })]
public string TransactionType { get; set; }
[Name("id transakce")]
public string ID { get; set; }
[Name("poznámka")]
[Name("poznámka", "poznámka k úhradě")]
public string Note { get; set; }
 
public string Dump(string delimiter = "\n")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment