Schnittstellenimporter wieder gängig gemacht
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user