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