public ActionResult <IList <CardReadDto> > GetHand(int size) { var hand = _service.DealHand(size); return(Ok(_mapper.Map <IList <CardReadDto> >(hand))); }