예제 #1
0
 public async Task <IList <Movimentacao> > SelecionarTodos()
 {
     try
     {
         return((await _movimentacaoRepository.SelecionarTodos())
                .ToList());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }