public async Task <Chat> InsertChatAsync(Chat inputChat, List <Guid> userIds) { var chat = messagingFactory.CreateChat(inputChat.Name); await chatRepository.InsertAsync(chat); await userChatAssociationsService.InsertAssociationsAsync(chat.Id, userIds); return(chat); }