Beispiel #1
0
        public void EditTable(Author author)
        {
            AuthorOperation EditAuthor = new AuthorOperation(
                tableAndFileControll,
                CommandType.EditCommand);

            EditAuthor.SetCommand(author);
        }
Beispiel #2
0
        public void AddTable(Author author)
        {
            AuthorOperation addAuthor = new AuthorOperation(
                tableAndFileControll,
                CommandType.AddCommand
                );

            addAuthor.SetCommand(author);
        }