示例#1
0
 public ResponsePeriodPaidGet WX_PeriodPaidGet([FromBody] RequestPeriodPaidGet request)
 {
     try
     {
         PeriodBLL bll = new PeriodBLL();
         return(bll.WX_PeriodPaidGet(request));
     }
     catch (Exception ex)
     {
         throw new HttpResponseException(
                   Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message));
     }
 }