using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Common;
namespace Tango.PPC.Jobs.ViewContracts
{
///
/// Represents the job view contract.
///
///
public interface IJobView : IPPCView
{
///
/// Displays the sample dye region.
///
void DisplaySampleDye();
///
/// Displays the fine tuning region.
///
void DisplayFineTuning();
///
/// Scrolls to top.
///
void ScrollToTop();
///
/// Scrolls to top.
///
void ScrollToEnd();
}
}