public async Task <ActionResult <List <GetDecksDto> > > GetDecks()
        {
            var result = await _deckRepository.ListAsync();

            return(_mapper.Map <List <GetDecksDto> >(result));
        }