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

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

adapting fuel types

parent 1984279e
No related branches found
No related tags found
No related merge requests found
......@@ -29,47 +29,50 @@
* Martin Rexeis, rexeis@ivt.tugraz.at, IVT, Graz University of Technology
*/
using System;
namespace TUGraz.VectoCommon.Models
{
public enum FuelType
{
// ReSharper disable InconsistentNaming
DieselCI,
EthanolCI,
PetrolPI,
EthanolPI,
LPG,
NG,
// ReSharper restore InconsistentNaming
}
public static class FuelTypeHelper
{
public static string GetLabel(this FuelType ftype)
{
switch (ftype) {
case FuelType.DieselCI:
return "Diesel CI";
case FuelType.EthanolCI:
return "Ethanol CI";
case FuelType.PetrolPI:
return "Petrol PI";
case FuelType.EthanolPI:
return "Ethanol PI";
case FuelType.LPG:
return "LPG";
case FuelType.NG:
return "NG";
default:
throw new ArgumentOutOfRangeException("fuel type", ftype, null);
}
}
public static string ToXMLFormat(this FuelType ftype)
{
return ftype.GetLabel();
}
}
using System;
namespace TUGraz.VectoCommon.Models
{
public enum FuelType
{
// ReSharper disable InconsistentNaming
DieselCI,
EthanolCI,
PetrolPI,
EthanolPI,
LPGPI,
NGPI,
NGCI,
// ReSharper restore InconsistentNaming
}
public static class FuelTypeHelper
{
public static string GetLabel(this FuelType ftype)
{
switch (ftype) {
case FuelType.DieselCI:
return "Diesel CI";
case FuelType.EthanolCI:
return "Ethanol CI";
case FuelType.PetrolPI:
return "Petrol PI";
case FuelType.EthanolPI:
return "Ethanol PI";
case FuelType.LPGPI:
return "LPG PI";
case FuelType.NGPI:
return "NG PI";
case FuelType.NGCI:
return "NG CI";
default:
throw new ArgumentOutOfRangeException("fuel type", ftype, null);
}
}
public static string ToXMLFormat(this FuelType ftype)
{
return ftype.GetLabel();
}
}
}
\ No newline at end of file
......@@ -71,6 +71,8 @@ namespace TUGraz.VectoCore.Models.Declaration
{
protected Dictionary<TKey, TValue> Data = new Dictionary<TKey, TValue>();
protected override string ErrorMessage { get { return "key {0} not found in lookup data"; } }
public virtual TValue Lookup(TKey key)
{
try {
......
......@@ -3,5 +3,6 @@ Diesel CI , 836 , 3.13 , 42700
Ethanol CI , 820 , 1.83 , 25700
Petrol PI , 750 , 3.04 , 41500
Ethanol PI , 786 , 2.09 , 29100
LPG , , 3.02 , 46000
NG , , 2.54 , 45100
\ No newline at end of file
LPG PI , , 3.02 , 46000
NG PI , , 2.54 , 45100
NG CI , , 1000 , 100000
\ No newline at end of file
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