Hello, I am fairly new to EA. I have a particular code and would like to generate custom UML from the code. Presently, with default settings, I was able to backward engineer my code but it just generated classes "blocks" and shows no apaprent connections between classes. We use "loose binding" strategy in our code.
Here's a representation of what I need to obtain:
Code is a bunch of such C#routines within a Webapi class:
public class ProjectConfigurationController : WebApiController
{
[HttpPost]
public ProjectStoreResponseDto CreateNewProject(ProjectConfigurationDto project)
{
var reply = CommandProcessor.ProcessCommand(new ProjectConfigurationSaveCommand(project)) as GenericSaveCommandResponse;
return reply;
}
[HttpPut]
public void UpdateProject(ProjectConfigurationDto project)
{
try
{
var reply = CommandProcessor.ProcessCommand(new ProjectConfigurationSaveCommand(project)) as GenericSaveCommandResponse;
AssertResponse(reply);
}
catch (Exception exception)
{
throw new HttpResponseException(HttpStatusCode.InternalServerError);
}
}
}
and I need a diagram that displays something like this

that is, command names are picked from code, and interface name of ProcessCommand is also used.
I appreciate any pointers about how can I semi- or fully-automatically create such a custom diagram.