public HttpResponseMessage RetrieveContractGeneralInformation(int contractId) { MPMerchantContractModel response; using (MerchantProfileTier mt = new MerchantProfileTier()) { response = mt.RetrieveContractGeneralInformation(contractId); return this.Request.CreateResponse(HttpStatusCode.OK, response); } }