public IEnumerable <RecursoProjetoViewModel> ListarPorProjeto(Guid idProjeto)
 {
     return(_mapper.Map <IEnumerable <RecursoProjetoViewModel> >(_recursoProjetoRepository.ListarPorProjeto(idProjeto)));
 }
 public IEnumerable <RecursoProjeto> ListarPorProjeto(Guid idProjeto)
 {
     return(_recursoProjetoRepository.ListarPorProjeto(idProjeto));
 }