Ejemplo n.º 1
0
 public async Task <List <DeckListDto> > GetAllAsync()
 {
     using var unitOfWork = UnitOfWorkProvider.Create();
     return(Mapper.Map <List <DeckListDto> >(await deckService.GetAllAsync()));
 }