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