Ejemplo n.º 1
0
        public async Task <Lobby> Pop(ulong guild, ulong channel, ulong user)
        {
            var lobby = await LobbyController.PopLobby(_context, guild, channel, user);

            if (lobby != null)
            {
                _deleteTimerService.RemoveData(new { gId = guild, cId = channel, uId = user });
                return(lobby);
            }
            return(lobby);
        }