Example #1
0
        public async Task AddChatMember(string id, int chatID)
        {
            ChatViewModel chat;

            if ((chat = await _chatService.AddChatMemberAsync(id, chatID)) != null)
            {
                await Clients.User(id)?.SendAsync("AddChat", chat);
            }
        }