Hello,
I'd like to create a simple central documentation that visually shows various processes and dependencies in my ASP.NET MVC application, for example how a service is called when my "Signup" action method gets POST data, decryption and verification happens, and finally everything is stored using the repository and the email service sends out an email. Even just a flow chart that shows the method calls, instance names and parameters would be great from start to finish (with branching).
Is there something that can do this automatically (e.g. for each action method) or do you guys do this by hand/use a specific tool? The whole point of it is to have new developers quickly understand what kinds of dependencies and flows exist in the application without endless "go to definition" in-source browsing of how things work.
Thank you