1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System.Text;
- using GCHR.Model.Konto;
- namespace GCHR.Model.Mandant
- {
- interface IMandant
- {
-
-
-
- bool BalanceDatei { get; }
-
-
-
- string BalanceHeader { get; }
-
-
-
- string BalanceBody(HaendlerKonto kto);
-
-
-
- string BalanceFooter { get; }
-
-
-
- bool AccountsDatei { get; }
-
-
-
- string AccountsHeader { get; }
-
-
-
- string AccountsBody(HaendlerKonto kto);
-
-
-
- string AccountsFooter { get; }
- string KontonummerFormatieren(HaendlerKonto konto);
- Encoding Encoding { get; }
- }
- }
|