From 3ad7f9ff5dc0f5b2974520ecd9049181db023eb0 Mon Sep 17 00:00:00 2001 From: Craig Date: Wed, 24 Jul 2019 17:53:23 +0100 Subject: [PATCH] create Overview of Command-Methods. --- Overview-of-Command-Methods.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Overview-of-Command-Methods.md diff --git a/Overview-of-Command-Methods.md b/Overview-of-Command-Methods.md new file mode 100644 index 0000000..24396b5 --- /dev/null +++ b/Overview-of-Command-Methods.md @@ -0,0 +1,5 @@ +There is nothing special about command-methods. They are nothing more than the methods found in `ConsoleCommands`. With that said, they do have a particular characteristic beyond the average method. They double-up as the commands the end-user enters in the console's prompt. From your point-of-view, though, they are normal methods - like any other. I call them "Command-Methods" to help separate your code from Console.Waterworks.Core -- that's all. If you prefer to call them methods (or functions), please do. + +Here is a diagram to help show the "position" of the command-methods within the project. + +![command-methods overview](attachments/command-methods-overview.png)