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