Exemplo n.º 1
0
 /**
  * get all the marital_statuss.
  *
  * @return the list of entities
  */
 @Transactional(readOnly = true)
 public Page<Marital_status> findAll(Pageable pageable) {
   log.debug("Request to get all Marital_statuss");
   Page<Marital_status> result = marital_statusRepository.findAll(pageable);
   return result;
 }