Ejemplo n.º 1
0
        private void CreateChatUser(string userId, int chatroomId)
        {
            var chatUser = new ChatUser()
            {
                UserId = userId,
                ChatId = chatroomId
            };

            chatRepository.AddRelation(chatUser);
        }