Auftraggber werden nun raussortiert und eingespeichert in globale Datenbank

This commit is contained in:
Husky
2019-08-08 08:59:16 +02:00
parent 9a77ae650d
commit 471ff95d0b
5 changed files with 42 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
using System;
using SanShared;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -9,7 +10,7 @@ namespace KlassenBIB
/// <summary>
///
/// </summary>
public class AuftraggeberListCollection : List<Auftraggeber>
public class AuftraggeberListCollection : List<IAuftraggeber>
{
}
}

View File

@@ -44,6 +44,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="AbwasserTechnischeAnlageCollection.cs" />
<Compile Include="AnlagenType.cs" />
<Compile Include="Auftraggeber.cs" />
<Compile Include="AuftraggeberListCollection.cs" />
<Compile Include="BilderCollection.cs" />

View File

@@ -17,6 +17,9 @@ namespace KlassenBIB
///
/// </summary>
public AuftraggeberListCollection AuftraggeberListe { get; set; }
/// <summary>
///
/// </summary>
public MainDataBase()
{
AuftraggeberListe = new AuftraggeberListCollection();