Esempio n. 1
0
        static void Main(string[] args)
        {
            var startProgram = new ExecuteLibraryProgram();

            startProgram.MakeItHappen();

            Console.WriteLine("");
            var validation = new Validation();

            string text = File.ReadAllText(@"../../../books.txt");

            Console.WriteLine("Would you like to search by title(1), author(2), checked out status(3) or would you prefer to see the full list of books(4)?");
            Console.Write("Please enter your numbered selection: ");
            var searchInput = int.Parse(Console.ReadLine());
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            var startProgram = new ExecuteLibraryProgram();

            startProgram.MakeItHappen();
        }