private void GetAllAuthors()
        {
            IEnumerable <Author> authors = processor.AllAuthors();

            foreach (var a in authors)
            {
                Console.WriteLine(a);
            }
        }