123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using GCHR.Model.Konto;
- namespace GCHR.Mandantenschnittstelle
- {
- 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; }
- }
- }
|