public HttpResponseMessage GetBalanceSheets(HttpRequestMessage request)
        {
            HttpResponseMessage response = null;

            IncomeAdjustmentCommFeeSearchManual[] cf = _MPRPLService.GetCommFeeManuals();

            // notice no need to create a seperate model object since Revenue entity will do just fine
            response = request.CreateResponse <IncomeAdjustmentCommFeeSearchManual[]>(HttpStatusCode.OK, cf);

            return(response);
        }