using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp.Menu
{
internal interface IMenuDisplay
{
///
/// Update the menu display in the Console.
///
void UpdateDisplay();
///
/// Select the next line in the menu
///
/// The current number of the new selected line
int SelectNextLine();
///
/// Select the previous line in the menu
///
/// The current number of the new selected line
int SelectPrevioustLine();
}
}