Auftraggeber wird in protokoll mit abgebildet
This commit is contained in:
25
SanShared/IAuftraggeber.cs
Normal file
25
SanShared/IAuftraggeber.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace SanShared
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public interface IAuftraggeber
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
string Name { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
string Strasse { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
string Ort { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
string Ansprechpartner { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -16,7 +16,8 @@ namespace SanShared
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="destinationPath"></param>
|
||||
/// <param name="projekt">Projekt</param>
|
||||
/// <returns></returns>
|
||||
Hashtable MakeProtokoll(string destinationPath);
|
||||
Hashtable MakeProtokoll(string destinationPath, IProjekt projekt);
|
||||
}
|
||||
}
|
||||
|
||||
13
SanShared/IProjekt.cs
Normal file
13
SanShared/IProjekt.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace SanShared
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public interface IProjekt
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
IAuftraggeber Auftraggeber { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -43,8 +43,10 @@
|
||||
<ItemGroup>
|
||||
<Compile Include="BilderObject.cs" />
|
||||
<Compile Include="Exceptions\LangNotFoundException.cs" />
|
||||
<Compile Include="IAuftraggeber.cs" />
|
||||
<Compile Include="ILanguage.cs" />
|
||||
<Compile Include="IMakeProtokol.cs" />
|
||||
<Compile Include="IProjekt.cs" />
|
||||
<Compile Include="ITemperature.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="UVcsvStrukture.cs" />
|
||||
|
||||
Reference in New Issue
Block a user