public Task <PaginatedListResult <DeletedInvoiceRowsResponseViewModel> > DeletedInvoiceRows(DeletedInvoiceRowsRequestViewModel viewModel)
 {
     throw new System.NotImplementedException();
 }
Example #2
0
 public async Task <IActionResult> DeletedInvoiceRows([FromQuery] DeletedInvoiceRowsRequestViewModel viewModel)
 => await HandleResultAsync(() => _service.DeletedInvoiceRows(viewModel));
Example #3
0
 public async Task <ServiceResult <PaginatedListResult <DeletedInvoiceRowsResponseViewModel> > > DeletedInvoiceRows(DeletedInvoiceRowsRequestViewModel viewModel)
 => ServiceResultFactory.Success(await _repository.DeletedInvoiceRows(viewModel));