namespace Core.Common.Controls.Table
{
///
///
public interface IWizardPage
{
///
/// Determines whether a finish button should is visible
///
bool CanFinish();
///
/// Determines whether a next button should is visible
///
bool CanDoNext();
///
/// Determines whether a previous button should is visible
///
bool CanDoPrevious();
}
}