Datenbank wird convertiert
This commit is contained in:
12
KlassenBIB/Collections/Projekte.cs
Normal file
12
KlassenBIB/Collections/Projekte.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace KlassenBIB.Collections
|
||||
{
|
||||
public class Projekte : List<Projekt>
|
||||
{
|
||||
}
|
||||
}
|
||||
22
KlassenBIB/DB.cs
Normal file
22
KlassenBIB/DB.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace KlassenBIB
|
||||
{
|
||||
public class DB
|
||||
{
|
||||
public Collections.Projekte Projekte { get; set; }
|
||||
public Collections.AuftraggeberList Auftraggeber { get; set; }
|
||||
public Collections.ImprägnierBericht Imprägnierungen { get; set; }
|
||||
|
||||
public DB()
|
||||
{
|
||||
Projekte = new Collections.Projekte();
|
||||
Auftraggeber = new Collections.AuftraggeberList();
|
||||
Imprägnierungen = new Collections.ImprägnierBericht();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -45,6 +45,8 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Collections\ImprägnierBericht.cs" />
|
||||
<Compile Include="Collections\Projekte.cs" />
|
||||
<Compile Include="DB.cs" />
|
||||
<Compile Include="Sanierung\Renovation\AbstractImprägnier.cs" />
|
||||
<Compile Include="Collections\AbwasserTechnischeAnlage.cs" />
|
||||
<Compile Include="Sanierung\Renovation\UVAnlagenTyp.cs" />
|
||||
|
||||
Reference in New Issue
Block a user