12345678910111213141516171819202122232425262728293031323334 |
- using GCHR.Model;
- namespace GCHR.Control.IO
- {
- class GchrConfigIO : ConfigIO
- {
- public GchrConfigIO(string datei) : base(datei, typeof(GchrConfig))
- {
- }
- public override object Laden()
- {
- var config = (GchrConfig)DateiLaden() ?? NeueInstanz();
- VersionsUpdate(config);
- return config;
- }
- private static void VersionsUpdate(GchrConfig config)
- {
- config.Einstellungen.Update = null;
- config.Einstellungen.Steuerungsdateien = null;
-
- if (config.Einstellungen.BilanzDepartment != null)
- {
-
- }
- }
- private static GchrConfig NeueInstanz()
- {
- return new GchrConfig();
- }
- }
- }
|