Exemplo n.º 1
0
 public HttpResponseMessage RetrieveMerchantContacts(int merchantId)
 {
     IList<MPMerchantContactsModel> response;
     using (MerchantProfileTier mt = new MerchantProfileTier())
     {
         response = mt.RetrieveMerchantContacts(merchantId);
         return this.Request.CreateResponse(HttpStatusCode.OK, response);
     }
 }