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