From a20fd4bd769aeccd1fd1f20273f895c92a5b5bb8 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 14 Jan 2018 15:24:49 +0200 Subject: Added code comments for: MachineStudio.Common. --- .../Tango.MachineStudio.Common/Navigation/INavigationManager.cs | 7 +++++++ .../Tango.MachineStudio.Common/Navigation/NavigationView.cs | 3 +++ 2 files changed, 10 insertions(+) (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Navigation') diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Navigation/INavigationManager.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Navigation/INavigationManager.cs index 631f9e2eb..4d1cbea8c 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Navigation/INavigationManager.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Navigation/INavigationManager.cs @@ -6,8 +6,15 @@ using System.Threading.Tasks; namespace Tango.MachineStudio.Common.Navigation { + /// + /// Represents the Machine Studio views navigation manager. + /// public interface INavigationManager { + /// + /// Navigates to the specified view. + /// + /// The view. void NavigateTo(NavigationView view); } } diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Navigation/NavigationView.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Navigation/NavigationView.cs index 77dbaf5b4..db0f0471f 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Navigation/NavigationView.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/Navigation/NavigationView.cs @@ -6,6 +6,9 @@ using System.Threading.Tasks; namespace Tango.MachineStudio.Common.Navigation { + /// + /// Represents the available views to navigate to using the . + /// public enum NavigationView { LoadingView, -- cgit v1.3.1