Пример #1
0
 public HttpResponseMessage RetrieveMerchantProfiles(int merchantId, int ProcessorId, string ProcessorNumber)
 {
     MPMerchantProfileDetailModel response;
     using (MerchantProfileTier mt = new MerchantProfileTier())
     {
         response = mt.RetrieveMerchantProfiles(merchantId, ProcessorId, ProcessorNumber);
         return this.Request.CreateResponse(HttpStatusCode.OK, response);
     }
 }