IKonto.cs 232 B

12345678910
  1. namespace GCHR.Model.Konto
  2. {
  3. interface IKonto
  4. {
  5. string Kontonummer { get; set; }
  6. string Bezeichnung { get; set; }
  7. // KontoTypen KontoTyp { get; set; }
  8. string Kontoart { get; set; }
  9. }
  10. }