GchrConfigIO.cs 802 B

12345678910111213141516171819202122232425262728293031323334
  1. using GCHR.Model;
  2. namespace GCHR.Control.IO
  3. {
  4. class GchrConfigIO : ConfigIO
  5. {
  6. public GchrConfigIO(string datei) : base(datei, typeof(GchrConfig))
  7. {
  8. }
  9. public override object Laden()
  10. {
  11. var config = (GchrConfig)DateiLaden() ?? NeueInstanz();
  12. VersionsUpdate(config);
  13. return config;
  14. }
  15. private static void VersionsUpdate(GchrConfig config)
  16. {
  17. config.Einstellungen.Update = null;
  18. config.Einstellungen.Steuerungsdateien = null;
  19. if (config.Einstellungen.BilanzDepartment != null)
  20. {
  21. }
  22. }
  23. private static GchrConfig NeueInstanz()
  24. {
  25. return new GchrConfig();
  26. }
  27. }
  28. }