public async Task <IEnumerable <LibroDto> > GetAll() { IEnumerable <LibroDto> lstCliente = null; using (SqlConnection con = new SqlConnection(CadenaConexion)) { await con.OpenAsync(); var result = await _libroRepository.GetAll(con); lstCliente = _mapper.Map <IEnumerable <LibroDto> >(result); } return(lstCliente); }
public IQueryable <Libro> GetAll() { return(_libroRepository.GetAll()); }