Пример #1
0
 public HttpResponseMessage RetrieveContractGeneralInformation(int contractId)
 {
     MPMerchantContractModel response;
     using (MerchantProfileTier mt = new MerchantProfileTier())
     {
         response = mt.RetrieveContractGeneralInformation(contractId);
         return this.Request.CreateResponse(HttpStatusCode.OK, response);
     }
 }