public IEnumerable <Lista> GetAll() => _listaRepository.GetAll();
Exemplo n.º 2
0
 public async Task <IEnumerable <Lista> > CarregarTodos()
 {
     return(await _listaRepository.GetAll());
 }