public List <BookVO> FindAll() { try { return(_converter.ParseList(_bookBusiness.FindAll())); } catch (Exception ex) { throw ex; } }
public List <BookVO> FindAll() { return(_bookConverter.ParseList(_repository.FindAll())); }
public IList <BookVO> FindAll() { return(_converter.ParseList(_bookRepository.FindAll())); }
public List <BookVO> FindAll() { return(_converter.ParseList(_ticketRepository.FindAll())); }
public List <BookVO> FindAll() => _bookConverter.ParseList(_repository.FindAll());
public List <BookVM> FindAll() { return(converter.ParseList(repo.FindAll())); }
public List <BookVO> FindAll() { var books = _repo.FindAll(); return(_converter.ParseList(books)); }
public async Task <List <BookVO> > FindAllAsync() { return(_converter.ParseList(await _repository.FindAllAsync())); }
public IEnumerable <BookVO> FindAll() => _converter.ParseList(_repo.FindAll());
public List <BookDTO> findAll() { return(_converter.ParseList(_repository.findAll())); }