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