html writer hinzugefgt

This commit is contained in:
2021-08-15 14:22:55 +02:00
parent 866b197442
commit c2fdd2fe7b
7 changed files with 107 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
using System.Collections.Generic;
using XMLParser.Model;
namespace XMLParser.Contract
{
public interface IProtokollWriter
{
void WriteEntry(Dictionary<ECalculatedResult, decimal> calculated, List<KanalObjekt> inspektionenAmTag);
}
}