Auftraggeber können nun bearbeitet werden und werden gespeichert
This commit is contained in:
31
KlassenBIB/Auftraggeber.cs
Normal file
31
KlassenBIB/Auftraggeber.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace KlassenBIB
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class Auftraggeber
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Strasse { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Ort { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Ansprechpartner { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -43,6 +43,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="AbwasserTechnischeAnlageCollection.cs" />
|
||||
<Compile Include="Auftraggeber.cs" />
|
||||
<Compile Include="BilderCollection.cs" />
|
||||
<Compile Include="ChargeNummerCollection.cs" />
|
||||
<Compile Include="Hutprofil.cs" />
|
||||
|
||||
@@ -25,6 +25,10 @@ namespace KlassenBIB
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Auftraggeber Auftraggeber { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public AbwasserTechnischeAnlageCollection Objekte { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
@@ -32,6 +36,7 @@ namespace KlassenBIB
|
||||
public Projekt()
|
||||
{
|
||||
Objekte = new AbwasserTechnischeAnlageCollection();
|
||||
Auftraggeber = new Auftraggeber();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user