blob: 14648eab1bc8b9bee49c2c627920a56453574b71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Common.Navigation
{
/// <summary>
/// Represents the PPC views navigation manager.
/// </summary>
public interface INavigationManager
{
/// <summary>
/// Navigates to the specified PPC view.
/// </summary>
/// <param name="view">The view.</param>
void NavigateTo(NavigationView view);
/// <summary>
/// Navigates to the specified module.
/// </summary>
/// <typeparam name="T"></typeparam>
void NavigateTo<T>() where T : IPPCModule;
/// <summary>
/// Navigates to the specified module using the view path (e.g MainView.JobsView).
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="viewPath">The view path.</param>
void NavigateTo<T>(String viewPath) where T : IPPCModule;
/// <summary>
/// Navigates to the specified module using the view path (e.g MainView,JobsView).
/// This method makes it easy to do stuff like NavigateTo(nameof(MainView),nameof(JobsView));
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="viewPath">The view path.</param>
void NavigateTo<T>(params String[] viewPath) where T : IPPCModule;
/// <summary>
/// Navigates to the specified module name.
/// </summary>
/// <param name="moduleName">Name of the module.</param>
void NavigateTo(String moduleName);
}
}
|