XML exporter fertiggestellt

Verschiedene Versionen implementiert
This commit is contained in:
2023-07-26 15:56:57 +02:00
parent 7b8b5a2337
commit c933989d19
6 changed files with 494 additions and 20 deletions

View File

@@ -40,7 +40,7 @@ namespace StammGenerator.Commands
IEnumerable<Kanal> haltungen = await _haltungDataService.GetAllByProjekt(_selectedProjekt);
IEnumerable<Schacht> schaechte = await _schachtDataService.GetAllByProjekt(_selectedProjekt);
await export.Export(_selectedProjekt.Id.ToString(), _selectedProjekt.Kodierungssystem, haltungen.ToList(), schaechte.ToList(), wwLog);
await export.Export(_selectedProjekt.Id.ToString(), _selectedProjekt.Kodierungssystem,_selectedProjekt.ExportType, haltungen.ToList(), schaechte.ToList(), wwLog);
}
catch(NotImplementedException)
{