public HttpResponseMessage GetAllBondConsolidatedDataOthers(HttpRequestMessage request)
        {
            return(GetHttpResponse(request, () =>
            {
                BondConsolidatedDataOthers[] bondconsolidateddataothers = _IFRSDataService.GetAllBondConsolidatedDataOthers();

                return request.CreateResponse <BondConsolidatedDataOthers[]>(HttpStatusCode.OK, bondconsolidateddataothers);
            }));
        }