예제 #1
0
        private static void Main(string[] args)
        {
            var interpreter = new Interpreter();

            interpreter.AddAlbumToRegistry(new Album("Korn", "Untouchables"));
            interpreter.AddAlbumToRegistry(new Album("Deftones", "Adrenaline"));

            interpreter.Interpret("album 2");
            interpreter.Interpret("album author 2");
            interpreter.Interpret("album author 1");
            interpreter.Interpret("author 1");
        }