11 lines
234 B
C#
11 lines
234 B
C#
using System.Collections.Generic;
|
|
using XMLParser.Model;
|
|
|
|
namespace XMLParser.Contract
|
|
{
|
|
public interface IUmsatzCalculator
|
|
{
|
|
void Calculate(IProtokollWriter protokollWriter,List<KanalObjekt> objekte = null);
|
|
}
|
|
}
|