Code cleanup durchgeführt

This commit is contained in:
HuskyTeufel
2020-07-14 14:19:55 +02:00
parent 004bc22428
commit daf44bae33
5 changed files with 3 additions and 95 deletions

View File

@@ -47,7 +47,6 @@
<Compile Include="Collections\ImprägnierBericht.cs" />
<Compile Include="Collections\Projekte.cs" />
<Compile Include="DB.cs" />
<Compile Include="LinerReste.cs" />
<Compile Include="Sanierung\Renovation\AbstractImprägnier.cs" />
<Compile Include="Collections\AbwasserTechnischeAnlage.cs" />
<Compile Include="Sanierung\Renovation\UVAnlagenTyp.cs" />
@@ -65,7 +64,6 @@
<Compile Include="LeistungsVerzeichnis.cs" />
<Compile Include="Collections\Leistungsverzeichnis.cs" />
<Compile Include="Lieferschein.cs" />
<Compile Include="MainDataBase.cs" />
<Compile Include="Projekt.cs" />
<Compile Include="Inspektionskuerzeln.cs" />
<Compile Include="Collections\Inspektionskuerzeln.cs" />
@@ -74,7 +72,7 @@
<Compile Include="Sanierung\Reparatur\Quicklock.cs" />
<Compile Include="Sanierung\Reparatur.cs" />
<Compile Include="Sanierung\Reparatur\SanMitHarz.cs" />
<Compile Include="Sanierung\Renovation\AbstractSanieren.cs" />
<Compile Include="Sanierung\AbstractSanieren.cs" />
<Compile Include="Sanierung\Sanierung.cs" />
<Compile Include="Collections\Sanierung.cs" />
<Compile Include="Sanierungskonzept.cs" />

View File

@@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KlassenBIB
{
public class LinerReste
{
}
}

View File

@@ -1,21 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Markup;
namespace KlassenBIB
{
[ContentProperty("AuftraggeberListe")]
public class MainDataBase
{
public Collections.AuftraggeberList AuftraggeberListe { get; set; }
public Collections.ImprägnierBericht ImprägnierBerichtListe { get; set; }
public MainDataBase()
{
AuftraggeberListe = new Collections.AuftraggeberList();
ImprägnierBerichtListe = new Collections.ImprägnierBericht();
}
}
}