html writer hinzugefgt
This commit is contained in:
@@ -3,8 +3,8 @@ using XMLParser.Model;
|
||||
|
||||
namespace XMLParser.Contract
|
||||
{
|
||||
public interface ICSVWriter
|
||||
public interface ICSVWriter : IProtokollWriter
|
||||
{
|
||||
void WriteEntry(Dictionary<ECalculatedResult, decimal> calculated, List<KanalObjekt> inspektionenAmTag);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
10
XMLParser.Contract/IProtokollWriter..cs
Normal file
10
XMLParser.Contract/IProtokollWriter..cs
Normal 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);
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,6 @@ namespace XMLParser.Contract
|
||||
{
|
||||
public interface IUmsatzCalculator
|
||||
{
|
||||
void Calculate(ICSVWriter csvWriter,List<KanalObjekt> objekte);
|
||||
void Calculate(IProtokollWriter protokollWriter,List<KanalObjekt> objekte);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user