AsciiImportExport.Tests.SpecialityBankFormatTest.EnumConvertFunc C# (CSharp) Method

EnumConvertFunc() private method

private EnumConvertFunc ( ChequeRow arg1, ChequeRow arg2 ) : string
arg1 ChequeRow
arg2 ChequeRow
return string
        private string EnumConvertFunc(ChequeRow arg1, ChequeRow.RecordTypeEnum arg2)
        {
            return arg2 == ChequeRow.RecordTypeEnum.Outstanding ? "O" : "I";
        }