public async Task <BodyResponse <MatchingResponseVM> > BlindMatching(long id, long blind)
        {
            BodyResponse <DummyMatchingResponseInfo> response =
                await _bus.SendCommand(new BlindMatchingCommand(id, blind));

            return(response.MapResponse <MatchingResponseVM>(_mapper));
        }
        public async Task <BodyResponse <MatchingResponseVM> > Playnow(long id)
        {
            BodyResponse <DummyMatchingResponseInfo> response = await _bus.SendCommand(new DummyPlaynowCommand(id));

            return(response.MapResponse <MatchingResponseVM>(_mapper));
        }