Datenbank wird convertiert

This commit is contained in:
HuskyTeufel
2020-07-03 11:00:08 +02:00
parent 6d1861a581
commit 79256c17e8
5 changed files with 110 additions and 1 deletions

22
KlassenBIB/DB.cs Normal file
View 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();
}
}
}