Пример #1
0
 public HttpResponseMessage RetriveMerchantStatus(string statusType = "mrc")
 {
     IList<GeneralModel> response;
     using (MerchantProfileTier mt = new MerchantProfileTier())
     {
         response = mt.RetrieveStatus(statusType);
         return this.Request.CreateResponse(HttpStatusCode.OK, response);
     }
 }