public async Task CreatePostTagNode(int postId, int tagId)
 {
     await _postTagRepository.Create(new PostTag { PostId = postId, TagId = tagId });
 }