Solvberget.Domain.Implementation.AlephRepository.GetOperationPrefix C# (CSharp) Method

GetOperationPrefix() private static method

private static GetOperationPrefix ( System.Operation op ) : string
op System.Operation
return string
        private static string GetOperationPrefix(Operation op)
        {
            switch ((int)op)
            {
                case 0:
                    return "op=item-data&base=NOR01";
                case 1:
                    return "op=present&base=NOR50";
                case 2:
                    return "op=find&base=NOR01";
                case 3:
                    return "op=find-doc&base=NOR01";
                case 4:
                    return "op=bor-auth&library=nor50";
                case 5:
                    return "op=bor-info&library=nor50";
                case 6:
                    return "op=hold-req&library=NOR50";
                case 7:
                    return "op=circ-status&library=NOR01";
                case 8:
                    return "op=renew&library=NOR50";
                case 9:
                    return "op=hold-req-cancel&library=NOR50";
                default:
                    return null;
            }
        }