public HttpResponseMessage UpdateGLException(HttpRequestMessage request, [FromBody] GLException glExceptionModel)
        {
            return(GetHttpResponse(request, () =>
            {
                var glException = _MPRPLService.UpdateGLException(glExceptionModel);

                return request.CreateResponse <GLException>(HttpStatusCode.OK, glException);
            }));
        }