diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-16 15:59:12 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-16 15:59:12 +0300 |
| commit | 04fd2234090e23ff2e648d997a1cc753c9354941 (patch) | |
| tree | 5624cfac25a0439ad6dfaae64132fbe5b62a50a0 /Software/Visual_Studio/PPC/Tango.PPC.UI/ViewsContracts/IMachineSetupView.cs | |
| parent | 9dbb8f8eb3d07ee07cf7ce1beab72df056e157c6 (diff) | |
| download | Tango-04fd2234090e23ff2e648d997a1cc753c9354941.tar.gz Tango-04fd2234090e23ff2e648d997a1cc753c9354941.zip | |
Implemented full machine setup with connectivity and communication testing!
Fixed an issue with auto reset event on transport and logging :/
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewsContracts/IMachineSetupView.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/ViewsContracts/IMachineSetupView.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewsContracts/IMachineSetupView.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewsContracts/IMachineSetupView.cs index c9ff93280..65b194f7b 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewsContracts/IMachineSetupView.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewsContracts/IMachineSetupView.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.PPC.Common; +using static Tango.PPC.UI.ViewModels.MachineSetupViewVM; namespace Tango.PPC.UI.ViewsContracts { @@ -18,5 +19,11 @@ namespace Tango.PPC.UI.ViewsContracts /// </summary> /// <param name="log">The log.</param> void AppendLog(String log); + + /// <summary> + /// Navigates to the specified machine setup view. + /// </summary> + /// <param name="view">The view.</param> + Task NavigateTo(MachineSetupView view); } } |
