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