@Structure
Module module;
Topic createTopic( String subject, String message, BoardViewer poster )
{
Topic topic = module.currentUnitOfWork().newEntity( Topic.class );
topic.subject().set( subject );
Post post = module.currentUnitOfWork().newEntity( Post.class );
post.message().set( message );
// Moderation checks