KlassenDLL im Main integriert
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
using KlassenBIB;
|
||||
using SanShared;
|
||||
using SchnittstelleImporter.XML2006;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
@@ -145,13 +145,14 @@ namespace SchnittstelleImporter
|
||||
///
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public List<Inspektionsobjekt> GetInspektionsobjekte()
|
||||
public List<IInspektionsobjekt> GetInspektionsobjekte()
|
||||
{
|
||||
List<Inspektionsobjekt> result = new List<Inspektionsobjekt>();
|
||||
/*
|
||||
List<IInspektionsobjekt> result = new List<IInspektionsobjekt>();
|
||||
List<InspizierteAbwassertechnischeAnlage> anlagen = XMLParser.GetList(XMLFile);
|
||||
foreach(InspizierteAbwassertechnischeAnlage src in anlagen)
|
||||
{
|
||||
Inspektionsobjekt inspektionsobjekt = new Inspektionsobjekt();
|
||||
IInspektionsobjekt inspektionsobjekt = new Inspektionsobjekt();
|
||||
KlassenBIB.Collections.Inspektionskuerzeln inspektionskuerzelns = new KlassenBIB.Collections.Inspektionskuerzeln();
|
||||
|
||||
inspektionsobjekt.Projektnummer = projektnummer;
|
||||
@@ -189,7 +190,10 @@ namespace SchnittstelleImporter
|
||||
inspektionsobjekt.Schadenskuerzeln = inspektionskuerzelns;
|
||||
result.Add(inspektionsobjekt);
|
||||
}
|
||||
|
||||
return result;
|
||||
*/
|
||||
return new List<IInspektionsobjekt>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user