public ResponseInvoiceLZ InvoiceLZ([FromBody] RequestInvoiceLZ request) { try { InvoiceBLL bll = new InvoiceBLL(); return(bll.InvoiceLZ(request)); } catch (Exception ex) { throw new HttpResponseException( Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message)); } }