Ejemplo n.º 1
0
        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));
        }
Ejemplo n.º 2
0
        public async Task <BodyResponse <MatchingResponseVM> > Playnow(long id)
        {
            BodyResponse <DummyMatchingResponseInfo> response = await _bus.SendCommand(new DummyPlaynowCommand(id));

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