33 lines
1.1 KiB
C#
33 lines
1.1 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 02.11.2018 09:19:35
|
|
using System;
|
|
using System.Collections.Generic;
|
|
namespace com.itac.oib.linecontrol.contracts.data
|
|
{
|
|
// source: assembly 5.1.0.84
|
|
// source: assembly ASM.AS.OIB.SIPLACEPro.LineControl.Contracts
|
|
public class IntegrityCheckModeMapper
|
|
{
|
|
|
|
// map asm enum value to itac enum value
|
|
public static IntegrityCheckMode get(Asm.As.Oib.SiplacePro.LineControl.Contracts.IntegrityCheckMode integrityCheckMode)
|
|
{
|
|
int intValue = (int)integrityCheckMode;
|
|
return (IntegrityCheckMode)intValue;
|
|
}
|
|
|
|
// map itac enum value to ASM enum value
|
|
public static Asm.As.Oib.SiplacePro.LineControl.Contracts.IntegrityCheckMode get(IntegrityCheckMode integrityCheckMode)
|
|
{
|
|
int intValue = (int)integrityCheckMode;
|
|
return (Asm.As.Oib.SiplacePro.LineControl.Contracts.IntegrityCheckMode)intValue;
|
|
}
|
|
}
|
|
}
|