Contracts hinzugefügt
This commit is contained in:
10
XMLParser.Contract/ICSVWriter.cs
Normal file
10
XMLParser.Contract/ICSVWriter.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
using XMLParser.Model;
|
||||
|
||||
namespace XMLParser.Contract
|
||||
{
|
||||
public interface ICSVWriter
|
||||
{
|
||||
void WriteEntry(Dictionary<ECalculatedResult, decimal> calculated, List<KanalObjekt> inspektionenAmTag);
|
||||
}
|
||||
}
|
||||
9
XMLParser.Contract/ICalculate.cs
Normal file
9
XMLParser.Contract/ICalculate.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System;
|
||||
|
||||
namespace XMLParser.Contract
|
||||
{
|
||||
public interface ICalculate
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
10
XMLParser.Contract/IUmsatzCalculator.cs
Normal file
10
XMLParser.Contract/IUmsatzCalculator.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
using XMLParser.Model;
|
||||
|
||||
namespace XMLParser.Contract
|
||||
{
|
||||
public interface IUmsatzCalculator
|
||||
{
|
||||
void Calculate(ICSVWriter csvWriter,List<KanalObjekt> objekte);
|
||||
}
|
||||
}
|
||||
11
XMLParser.Contract/XMLParser.Contract.csproj
Normal file
11
XMLParser.Contract/XMLParser.Contract.csproj
Normal file
@@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\XMLParser.Model\XMLParser.Model.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user