33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
/*
|
|
* Copyright (c) 2018 iTAC Software AG, Germany. All Rights Reserved.
|
|
*
|
|
* This software is protected by copyright. Under no circumstances may any part of this file in any form be copied,
|
|
* printed, edited or otherwise distributed, be stored in a retrieval system, or be translated into another language
|
|
* without the written permission of iTAC Software AG.
|
|
*/
|
|
// created 23.11.2018 08:05:09
|
|
using System;
|
|
using System.Collections.Generic;
|
|
namespace com.itac.oib.displayservice.contracts.data
|
|
{
|
|
// source: assembly 3.2.0.152
|
|
// source: assembly ASM.AS.OIB.DisplayService.Contracts
|
|
public class SeverityLevelMapper
|
|
{
|
|
|
|
// map asm enum value to itac enum value
|
|
public static SeverityLevel get(Asm.As.Oib.DisplayService.Contracts.Data.Types.SeverityLevel severityLevel)
|
|
{
|
|
int intValue = (int)severityLevel;
|
|
return (SeverityLevel)intValue;
|
|
}
|
|
|
|
// map itac enum value to ASM enum value
|
|
public static Asm.As.Oib.DisplayService.Contracts.Data.Types.SeverityLevel get(SeverityLevel severityLevel)
|
|
{
|
|
int intValue = (int)severityLevel;
|
|
return (Asm.As.Oib.DisplayService.Contracts.Data.Types.SeverityLevel)intValue;
|
|
}
|
|
}
|
|
}
|