Compare commits
9 Commits
c3889e54ef
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
12388fe9bc | ||
|
|
f9183b879f | ||
|
|
be9cf2d7f3 | ||
|
|
25aadfb9b3 | ||
|
|
c13f0ac093 | ||
|
|
cacbeaa94c | ||
|
|
482a88ca3d | ||
|
|
698499b1e7 | ||
|
|
0d402a9f93 |
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
/.vs/
|
||||||
|
/FinjaSAN/bin/*
|
||||||
|
/SanierungsDatenbank/obj/*
|
||||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "Schnittstelle"]
|
||||||
|
path = Schnittstelle
|
||||||
|
url = https://git.intern.ww-tech.de/Husky/Schnittstelle.git
|
||||||
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,4 +7,8 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Schnittstelle\Schnittstelle\Schnittstelle.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,9 +1,43 @@
|
|||||||
namespace FinjaSAN;
|
using Schnittstelle.Sanierung;
|
||||||
|
using System.Diagnostics;
|
||||||
|
|
||||||
|
namespace FinjaSAN;
|
||||||
|
|
||||||
class Program
|
class Program
|
||||||
{
|
{
|
||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Hello, World!");
|
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
|
||||||
|
try
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
src = new Schnittstelle.Import.XML.v2013.XML2013(path).KanalObjekte;
|
||||||
|
#if !DEBUG
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
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);
|
||||||
|
|
||||||
|
sw.Stop();
|
||||||
|
Console.WriteLine("Beendet in {0} ms",sw.ElapsedMilliseconds);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
31
FinjaSANSystem.sln
Normal file
31
FinjaSANSystem.sln
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.11.35219.272
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FinjaSAN", "FinjaSAN\FinjaSAN.csproj", "{DC3F9C17-1CBF-4281-B603-0AF5CAE74839}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Schnittstelle", "Schnittstelle\Schnittstelle\Schnittstelle.csproj", "{24D469AC-1BED-4FB7-87FC-4B0F83F22523}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{DC3F9C17-1CBF-4281-B603-0AF5CAE74839}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{DC3F9C17-1CBF-4281-B603-0AF5CAE74839}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{DC3F9C17-1CBF-4281-B603-0AF5CAE74839}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{DC3F9C17-1CBF-4281-B603-0AF5CAE74839}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{24D469AC-1BED-4FB7-87FC-4B0F83F22523}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{24D469AC-1BED-4FB7-87FC-4B0F83F22523}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{24D469AC-1BED-4FB7-87FC-4B0F83F22523}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{24D469AC-1BED-4FB7-87FC-4B0F83F22523}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {C0B03055-D539-4A61-BC08-E4FCC68FDBBF}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
9
SanierungsDatenbank/SanierungsDatenbank.csproj
Normal file
9
SanierungsDatenbank/SanierungsDatenbank.csproj
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
1
Schnittstelle
Submodule
1
Schnittstelle
Submodule
Submodule Schnittstelle added at 2f078c19ab
Reference in New Issue
Block a user