using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.MachineStudio.Technician.Views;
namespace Tango.MachineStudio.Technician.Navigation
{
///
/// Represents the technician module navigation manager.
///
public class TechNavigationManager
{
///
/// Navigates to the specified view.
///
/// The view.
public void NavigateTo(TechNavigationView view)
{
MainView.Instance.TransitionControl.AutoNavigate(view.ToString());
}
}
}