1
0
Fork 0
The documentation repository for the software projects developed for the 'Return to Ritherdon Project' by Nicola Ellis. http://www.nicolaellis.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

17 lines
451 B

digraph overview {
fontname = Arial;
labelloc = t;
label = "Eyes and Ears";
fontsize = 20;
node [fontname = Arial];
MainPage -> ViewModel -> Services;
ViewModel -> MainPage;
Services -> ViewModel;
MainPage -> Services;
Services -> MainPage;
Models -> ViewModel;
Models -> MainPage;
Models -> Services;
MainPage [style = filled, color = lightblue, label="MainPage (View and Code-Behind)"];
ViewModel [label = "ViewModels/MainPageVM"];
}