Exemplo n.º 1
0
 public List <BookVO> FindAll()
 {
     try
     {
         return(_converter.ParseList(_bookBusiness.FindAll()));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 2
0
 public List <BookVO> FindAll()
 {
     return(_bookConverter.ParseList(_repository.FindAll()));
 }
Exemplo n.º 3
0
 public IList <BookVO> FindAll()
 {
     return(_converter.ParseList(_bookRepository.FindAll()));
 }
Exemplo n.º 4
0
 public List <BookVO> FindAll()
 {
     return(_converter.ParseList(_ticketRepository.FindAll()));
 }
 public List <BookVO> FindAll() => _bookConverter.ParseList(_repository.FindAll());
Exemplo n.º 6
0
 public List <BookVM> FindAll()
 {
     return(converter.ParseList(repo.FindAll()));
 }
Exemplo n.º 7
0
        public List <BookVO> FindAll()
        {
            var books = _repo.FindAll();

            return(_converter.ParseList(books));
        }
Exemplo n.º 8
0
 public async Task <List <BookVO> > FindAllAsync()
 {
     return(_converter.ParseList(await _repository.FindAllAsync()));
 }
Exemplo n.º 9
0
 public IEnumerable <BookVO> FindAll() => _converter.ParseList(_repo.FindAll());
Exemplo n.º 10
0
 public List <BookDTO> findAll()
 {
     return(_converter.ParseList(_repository.findAll()));
 }