Beispiel #1
0
        public Chat AtenderChatPendente()
        {
            var chat = _chatService.GetPendente();

            chat.Atendente = _usuarioHandler.GetUsuario(Context.ConnectionId);
            _chatService.Update(chat.Id, chat);
            Clients.Client(_usuarioHandler.GetId(chat.Motorista)).SendAsync("ChatAtendido", chat);
            Clients.Group("atendente").SendAsync("ChatAtendido", chat);
            return(chat);
        }