Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 47fc4c50 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

changing return type DataTable to TableData

parent 14587ce4
No related branches found
No related tags found
No related merge requests found
......@@ -261,7 +261,7 @@ namespace TUGraz.VectoCommon.InputData
/// P096, P097, P098
/// cf. VECTO Input Parameters.xlsx
/// </summary>
DataTable LossMap { get; }
TableData LossMap { get; }
/// <summary>
/// P079
......@@ -344,7 +344,7 @@ namespace TUGraz.VectoCommon.InputData
/// P028, P029, P030, P031, P032, P119, P120, P121, P122, P123, P124, P125, P126
/// cf. VECTO Input Parameters.xlsx
/// </summary>
DataTable CycleData { get; }
TableData CycleData { get; }
}
public interface IDriverDeclarationInputData
......
......@@ -124,7 +124,7 @@ namespace TUGraz.VectoCore.InputData.FileIO.JSON
}
}
public DataTable LossMap
public TableData LossMap
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design",
"CA1065:DoNotRaiseExceptionsInUnexpectedLocations")]
......
......@@ -312,7 +312,7 @@ namespace TUGraz.VectoCore.InputData.FileIO.JSON
foreach (var cycle in Body.GetEx(JsonKeys.Job_Cycles)) {
//.Select(cycle =>
var cycleFile = Path.Combine(BasePath, cycle.Value<string>());
DataTable cycleData;
TableData cycleData;
if (File.Exists(cycleFile)) {
cycleData = VectoCSVFile.Read(cycleFile);
} else {
......
......@@ -41,7 +41,7 @@ namespace TUGraz.VectoCore.InputData.Impl
{
public string Name { get; internal set; }
public DataTable CycleData { get; internal set; }
public TableData CycleData { get; internal set; }
}
public class StartStopInputData : IStartStopEngineeringInputData
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment