I do not know if this the correct forum to ask this question , but I need a huge favour in creating a UML diagram for my existing project, which is developed in C#.
I have a windows service which has a class file Program.cs , Service.cs which has OnStart() and OnStop() methods.
I have a class library , also developed in c#.It has an interface Interface1.cs , 3 class files which implements this interface. The class names are Class1.cs, Class2.cs, Class3.cs
All theses classes implement the interface.
This class library reference is added in the windows service, i.e the dll is added.
This is the scenario I have. Now for this I need to create UML diagram with proper flow. Below is the diagram I have created.
The class diagram for Windows Service:
The class diagram for Class library:
I have the UML diagrams , but how do I show the flow and dependencies between these diagrams.Can anyone help me here.
EDIT:
Extra Information which might be useful.
The windows service receives some orders from another service. Based on the order type it has received, it creates a object for either Class1.cs or Class2.cs or Class3.cs .