27 lines
685 B
C#
27 lines
685 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using XMLParser.Contract;
|
|
using XMLParser.Model;
|
|
using XMLParser.Functions;
|
|
using XMLParser;
|
|
|
|
namespace XMLProgramm
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
|
|
ICSVWriter csvWriter = new StrassenUmsatzCSVWriter();
|
|
|
|
XMLParse ser = new XMLParse("2021-07-29_KR_H_L_Oldenburg_Eichenstraße.xml");
|
|
|
|
IUmsatzCalculator calculator = new XMLParser.Functions.UmsatzCalculator.StrassenUmsatz();
|
|
calculator.Calculate(csvWriter,ser.KanalObjekte);
|
|
}
|
|
}
|
|
}
|