Protokollwriter weitergeführt

Lässt sich noch nicht bauen!
This commit is contained in:
Husky
2021-02-23 22:03:48 +01:00
parent 7658dbdedd
commit 709f16ad47
7 changed files with 150 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
using System;
using Models;
namespace ProtokollWriterContract {
public interface IProtokollWriter {
void WriteProtokoll(Inspektionsobjekt inspektionsobjekt);
}
}

View File

@@ -1,5 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Models\Models.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>