22 lines
613 B
C#
22 lines
613 B
C#
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();
|
|
}
|
|
}
|
|
}
|