Exemple #1
0
 public List <AgenciaDTO> ListarPeloBanco(int?bancoId)
 {
     return(agenciaRepository.ListarTodos().Where(l => l.BancoId == bancoId).To <List <AgenciaDTO> >());
 }