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