Exemple #1
0
 public async Task <ActionResult <List <InvoiceLineApiModel> > > Get(CancellationToken ct = default)
 {
     try
     {
         return(new ObjectResult(await _BlazorSupervisor.GetAllInvoiceLineAsync(ct)));
     }
     catch (Exception ex)
     {
         return(StatusCode(500, ex));
     }
 }