public HttpResponseMessage RetrieveMerchantBusinessInformation(int merchantId) { MPMerchantBusinessModel response; using (MerchantProfileTier mt = new MerchantProfileTier()) { response = mt.RetrieveMerchantBusinessInformation(merchantId); return this.Request.CreateResponse(HttpStatusCode.OK, response); } }