Ejemplo n.º 1
0
 public HttpResponseMessage RetrieveMerchantContactsInformation(int contactId)
 {
     MPMerchantContactDetailModel response;
     using (MerchantProfileTier mt = new MerchantProfileTier())
     {
         response = mt.RetrieveMerchantContactsInformation(contactId);
         return this.Request.CreateResponse(HttpStatusCode.OK, response);
     }
 }