package pwc.taxtech.invoice.output; import org.springframework.data.repository.CrudRepository; import org.springframework.data.repository.PagingAndSortingRepository; import org.springframework.stereotype.Repository; interface OutputInvoiceRepository extends PagingAndSortingRepository<OutputInvoice, String> { }