G
G
Gitenax2017-04-26 12:32:18
CRM
Gitenax, 2017-04-26 12:32:18

By what means is an environment created to simulate any processes [C#]?

How to implement in your project, something like a simulation environment like in Cisco Packet Tracer, for example, or some kind of CRM system. Those. what is the workspace?
It is clear that each object on the workspace is an instance of a specific class that is created automatically when it is transferred to the "workspace", moreover, by the Drag & Drop method (but this is not the most important thing).
How to do the same, how to implement these objects (to begin with) and subsequently the connection between them?
cb01b8b3e3ab4ed6b0593062e8644731.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander Ter, 2017-04-26
@alexsandr0000

If you want to implement it yourself:
The data structure is a list of trees;
Node - some kind of base class or interface;
List of operations:
- Add / remove / change node;
- Send/receive a message (here a global queue can be used, which receives messages from nodes, and the handler, depending on the address, sends a message to the addressee)
- Search for a node
- Tree traversal to determine the route or search for a node.
I think it is better to store data in a database
. If you don’t need to implement, what you can search on the Internet computer modeling

I
Ivan Arxont, 2017-04-28
@arxont

If a logical decision, then you have already been told above.
If you care about the interface, then look towards https://www.yworks.com/products/yfiles-net

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question