public HttpResponseMessage GetBorrowingScheduleResultDistinctRefNo(HttpRequestMessage request)
        {
            return(GetHttpResponse(request, () =>
            {
                BorrowingSchedule[] borrowingschedule = _IFRSDataService.GetBorrowingScheduleDistinctRefNo();

                return request.CreateResponse <BorrowingSchedule[]>(HttpStatusCode.OK, borrowingschedule);
            }));
        }