Application.Common.Helper.CallTypeToString C# (CSharp) Method

CallTypeToString() public static method

public static CallTypeToString ( CallType callType ) : string
callType CallType
return string
        public static string CallTypeToString(CallType callType)
        {
            switch (callType)
            {
                case CallType.Any:
                    return "A";
                case CallType.Inbound:
                    return "I";
                case CallType.Outbound:
                    return "O";
                default:
                    throw new ArgumentOutOfRangeException("callType");
            }
        }