using System; using System.Collections.Generic; using System.Linq; using System.Text; using Deltares.Dam.Data; namespace PerformanceTestClientConsole { class Program { private const string InputFile = "TestData\\ijkdijkpointdata_fews2dam.xml"; private const string OuptutFile = "TestData\\ijkdijkpointdata_dam2fews_output.xml"; static void Main(string[] args) { var processor = new GageDikeProcessor(); processor.LoadWaterLevelTimeSerie(InputFile); processor.Process(); processor.SaveResultsToFile(OuptutFile); } } }