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

Skip to content
Snippets Groups Projects
Commit ad93a38f authored by Michael KRISPER's avatar Michael KRISPER
Browse files

added NotImplemented Exceptions

parent d8311292
No related branches found
No related tags found
No related merge requests found
using System.IO;
using System;
using System.IO;
namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
{
......@@ -12,6 +13,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
public static FuelConsumptionMap ReadFromJson(string json)
{
//todo implement ReadFromJson
throw new NotImplementedException();
return new FuelConsumptionMap();
}
}
......
......@@ -18,6 +18,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Engine
public static FullLoadCurve ReadFromJson(string json)
{
//todo: implement ReadFromJson
throw new NotImplementedException();
return new FullLoadCurve();
}
......
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