Compare commits
7 Commits
698499b1e7
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
12388fe9bc | ||
|
|
f9183b879f | ||
|
|
be9cf2d7f3 | ||
|
|
25aadfb9b3 | ||
|
|
c13f0ac093 | ||
|
|
cacbeaa94c | ||
|
|
482a88ca3d |
113189
2023_Bassum_Berliner Str._Leipziger Str..xml
Normal file
113189
2023_Bassum_Berliner Str._Leipziger Str..xml
Normal file
File diff suppressed because it is too large
Load Diff
8748
230817_Bassum_Berliner Str._Leipziger Str..xml
Normal file
8748
230817_Bassum_Berliner Str._Leipziger Str..xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Auswertung TV-Inspektion.xlsx
Normal file
BIN
Auswertung TV-Inspektion.xlsx
Normal file
Binary file not shown.
8731
Bewertet.xml
Normal file
8731
Bewertet.xml
Normal file
File diff suppressed because it is too large
Load Diff
@@ -7,8 +7,13 @@ class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello, World!");
|
||||
const string path = @"C:\Users\damia\Desktop\dev\FinjaSAN\OOWV.xml";
|
||||
Stopwatch sw = new Stopwatch();
|
||||
sw.Start();
|
||||
string path = "";
|
||||
if(args.Length > 0) path = args[0];
|
||||
else path = @"C:\Users\damia\Desktop\dev\FinjaSAN\Bewertet.xml";
|
||||
|
||||
|
||||
List<Schnittstelle.Import.XML.v2013.Model.KanalObjekt> src = new List<Schnittstelle.Import.XML.v2013.Model.KanalObjekt>();
|
||||
|
||||
#if !DEBUG
|
||||
@@ -23,11 +28,16 @@ class Program
|
||||
Console.WriteLine("Beim Importieren wurde ein Steuerkürzel gefunden der nicht implementiert ist bitte kontaktiere Damian mit folgende Namen: {0}\n{1}",ex.Message, ex.StackTrace);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
List<Sanierungart> sanierungarts = new List<Sanierungart>();
|
||||
|
||||
sanierungarts.Add(new Reparatur());
|
||||
sanierungarts.Add(new Renovation());
|
||||
Schnittstelle.Export.Excel.MakeWorkbook(src,sanierungarts);
|
||||
|
||||
//Debugger.Break();
|
||||
sw.Stop();
|
||||
Console.WriteLine("Beendet in {0} ms",sw.ElapsedMilliseconds);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Submodule Schnittstelle updated: 042b059f2a...2f078c19ab
Reference in New Issue
Block a user