using System; namespace ArchestrAServices.ASBContract; public static class ASBEnumFactory { public static DataType IntToDataType(ushort iValue) { try { return (DataType)iValue; } catch (Exception) { return DataType.TypeUnknown; } } public static ushort DataTypeToInt(DataType eValue) { return (ushort)eValue; } }