using System;
using System.Collections.Generic;
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
{
///
/// Represents the machine setup view contract.
///
///
public interface IMachineSetupView : IPPCView
{
///
/// Appends the log.
///
/// The log.
void AppendLog(String log);
///
/// Navigates to the specified machine setup view.
///
/// The view.
Task NavigateTo(MachineSetupView view);
}
}