Interface InvoiceRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<Invoice,String>, InvoiceRepositoryMixin, org.springframework.data.repository.PagingAndSortingRepository<Invoice,String>, org.springframework.data.repository.Repository<Invoice,String>

public interface InvoiceRepository extends org.springframework.data.repository.CrudRepository<Invoice,String>, org.springframework.data.repository.PagingAndSortingRepository<Invoice,String>, InvoiceRepositoryMixin
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.data.domain.Page<Invoice>
    findAll(org.springframework.data.domain.Example<Invoice> example, org.springframework.data.domain.Pageable pageable)
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll

    Methods inherited from interface be.appify.prefab.example.sale.invoice.InvoiceRepositoryMixin

    findMaxInvoiceNumberForYear

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll, findAll
  • Method Details

    • findAll

      org.springframework.data.domain.Page<Invoice> findAll(org.springframework.data.domain.Example<Invoice> example, org.springframework.data.domain.Pageable pageable)