Hi there, I've just started at a new job with sole responsibility for a large(ish) financial application. It's got about 800 stored procedures, 120 SQL server tables and 18 .net projects with approx 1200 code files. And no documentation other than line comments in the code.
As I mend bugs and make ad hoc to the data I want to document what I find.
The main thing I'm interested in is describing what occurs after the user does someting (e.g. presses a button to upload) How the data is changed and what methods/procedures are called to make that change. In that way if a bug is noticed by the users later on I can see the path(s) taken through the code/tables quickly. What should I use to document this. Is this a UML use case or a Sequence diagram? Or something else entirely?
Any thoughts welcome. Richard