Пример #1
0
 public HttpResponseMessage RetrieveMerchantOwners(int merchantId)
 {
     IList<MPMerchantOwnersModel> response;
     using (MerchantProfileTier mt = new MerchantProfileTier())
     {
         response = mt.RetrieveMerchantOwners(merchantId);
         return this.Request.CreateResponse(HttpStatusCode.OK, response);
     }
 }