using System.Collections.Generic; using XMLParser.Model; namespace XMLParser.Contract { public interface IUmsatzCalculator { List Kanalobjekte {get; set;} void Calculate(IProtokollWriter protokollWriter,List objekte = null); } }