23 lines
604 B
C#
23 lines
604 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;
|
|
namespace XMLProgramm
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
|
|
ICSVWriter csvWriter = new StrassenUmsatzCSVWriter();
|
|
List<KanalObjekt> objekte = new List<KanalObjekt>();
|
|
IUmsatzCalculator calculator = new XMLParser.Functions.UmsatzCalculator.StrassenUmsatz();
|
|
calculator.Calculate(csvWriter,objekte);
|
|
}
|
|
}
|
|
}
|