private static async Task GetBookAsync(BookProtoService.BookProtoServiceClient client)
        {
            Console.WriteLine("GetBookAsync started...");
            var response = await client.GetBookAsync(new GetBookRequest
            {
                BookId = 1
            });

            Console.WriteLine("GetBookAsync response: " + response.ToString());
        }