public void createAuthor(string firstName, string lastName, string birthYear)
        {
            AuthorRepository authorManagerObj = new AuthorRepository();
            AUTHOR           author           = new AUTHOR();

            author.FirstName = firstName;
            author.LastName  = lastName;
            author.BirthYear = birthYear;
            authorManagerObj.CreateNew(author);
        }