Subversion Repositories Integrator Subversion

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

package br.com.ec.infrastructure.repository;

import java.util.List;

import br.com.ec.domain.model.FormaPagamento;
import br.edu.cesmac.core.generic.GenericRepository;

public interface FormaPagamentoRepository extends GenericRepository<FormaPagamento> {

        List<FormaPagamento> consultarFormasDePagamentoDeCredito();
       
}