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