using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp { internal interface IMenuDisplay { void UpdateDisplay(); int SelectNextLine(); int SelectPrevioustLine(); } }