Instant Reverse. C#. All connections are not built

Instant Reverse. C#. All connections are not built.
Please excuse me in advance if my question is incorrect.
I started learning C#, so there may be inaccuracies in the questions.

question.
Instant Revers C# doesn’t build all the connections.
What am I doing wrong?
Or is there no need for these connections?

Visual Paradigm errors (if I understand everything correctly).
1. The diagram in the HTMLLoader class does not show that the class accepts the IParserSettings settings parameter.
2. The FormMain class has no connection to the 'ParserWorker<string>andHabraParser()` classes.
Or should there be no such connection?

class HtmlLoader
{
    readonly HttpClient client;
    readonly string url;

    public HtmlLoader(IParserSettings settings)
    {
        client = new HttpClient();     
    }

    public async Task<string> GetSourceByPageId(int id) { // code... }
}
public partial class FormMain : Form
{
    ParserWorker<string[]> parser;

    public FormMain()
    {
        InitializeComponent();

        parser = new ParserWorker<string[]>(
                new HabraParser()
            );

        parser.OnCompleted += Parser_OnCompleted;
        parser.OnNewData += Parser_OnNewData;
    }

}

I’m using a project

Pic-1

Sorry for the delay. I would like to let you know the C# instant reverse didn’t generate association between FormMain & ParserWorker problem has been fixed. Please update the software to latest patch build (20230240ai or later) to get this enhancement.

  • Please make sure you have pressed the “Update to latest patch” button on the left hand side of the dialog right after launching the update program

Please note that our engine will generate association based on the attributes defined in the class, and will not consider the logic in constructors/operations. Since in FormMain the HabraParser is not define as attribute (it is being defined in constructor’s logic) therefore it will not be reverse as association. Feel free to contact me if you require any further information.