27 lines
700 B
C#
27 lines
700 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KlassenBIB
|
|
{
|
|
public class DB
|
|
{
|
|
public int DatabaseVersion { get; set; }
|
|
public Collections.Projekte Projekte { get; set; }
|
|
public Collections.AuftraggeberList Auftraggeber { get; set; }
|
|
public Collections.ImprägnierBericht Imprägnierungen { get; set; }
|
|
|
|
|
|
|
|
public DB()
|
|
{
|
|
DatabaseVersion = 1;
|
|
Projekte = new Collections.Projekte();
|
|
Auftraggeber = new Collections.AuftraggeberList();
|
|
Imprägnierungen = new Collections.ImprägnierBericht();
|
|
}
|
|
}
|
|
}
|