Schnittstellenimporter wieder gängig gemacht

This commit is contained in:
HuskyTeufel
2022-04-20 15:21:47 +02:00
parent cdc5880293
commit f035f447bc
6 changed files with 14 additions and 27 deletions

View File

@@ -1,4 +1,5 @@
using SanShared;
using KlassenBIB;
using SanShared;
using SchnittstelleImporter.XML2006;
using System;
using System.Collections.Generic;
@@ -15,7 +16,7 @@ namespace SchnittstelleImporter
/// <summary>
///
/// </summary>
public class I2006XML : IImportedObjekte
public class I2006XML : SanShared.IImportedObjekte
{
string xmlFile;
string projektnummer;
@@ -145,14 +146,14 @@ namespace SchnittstelleImporter
///
/// </summary>
/// <returns></returns>
public List<IInspektionsobjekt> GetInspektionsobjekte()
public List<Inspektionsobjekt> GetInspektionsobjekte()
{
/*
List<IInspektionsobjekt> result = new List<IInspektionsobjekt>();
List<Inspektionsobjekt> result = new List<Inspektionsobjekt>();
List<InspizierteAbwassertechnischeAnlage> anlagen = XMLParser.GetList(XMLFile);
foreach(InspizierteAbwassertechnischeAnlage src in anlagen)
{
IInspektionsobjekt inspektionsobjekt = new Inspektionsobjekt();
Inspektionsobjekt inspektionsobjekt = new Inspektionsobjekt();
KlassenBIB.Collections.Inspektionskuerzeln inspektionskuerzelns = new KlassenBIB.Collections.Inspektionskuerzeln();
inspektionsobjekt.Projektnummer = projektnummer;
@@ -192,8 +193,6 @@ namespace SchnittstelleImporter
}
return result;
*/
return new List<IInspektionsobjekt>();
}
}
}