static async Task Main()
        {
            BooksContext bookContext = new BooksContext();
            BooksService service     = new BooksService(bookContext);

            service.AddLogging();
            while (true)
            {
                await PickMethodAsync(service);
            }
        }