public HttpResponseMessage RetrieveMerchantCreditInformation(Int64 merchantId, Int64 contractId) { MerchantInformationOfferModel model; using (CreditReportTier mt = new CreditReportTier()) { model = (mt.RetrieveMerchantCreditInformation(merchantId, contractId)); return this.Request.CreateResponse(HttpStatusCode.OK, model); } }