예제 #1
0
        static void Main(string[] args)
        {
            Notebook notebook = new Notebook();

            notebook.AddNote(new Note("Note1", "Text1"));
            notebook.AddNote(new Note("Note2", "Text2"));
            notebook.AddNote(new Note("Note3", "Text3"));
            IAbstractIterator iterator = notebook.GetIterator();

            for (Note note = iterator.First(); !iterator.IsDone; note = iterator.Next())
            {
                note.Show();
            }

            Box box = new Box();

            box.AddProduct(new Product("Product1", 10.99));
            box.AddProduct(new Product("Product2", 5));
            box.AddProduct(new Product("Product3", 12.8));
            IAbstractIteratorBox iteratorbox = box.GetIterator();

            for (Product product = iteratorbox.First(); !iteratorbox.IsDone; product = iteratorbox.Next())
            {
                Console.WriteLine(product.ToString());
            }
        }
예제 #2
0
파일: Program.cs 프로젝트: biwz/lv6_ralasic
        static void Main(string[] args)
        {
            //prvi
            Notebook notebook = new Notebook();

            notebook.AddNote(new Note("Error", "Important"));
            notebook.AddNote(new Note("Info", "Important"));
            notebook.AddNote(new Note("Signal", "Important"));
            notebook.AddNote(new Note("Thing", "Important"));

            IAbstractIterator iterator = notebook.GetIterator();

            while (!iterator.IsDone)
            {
                iterator.Current.Show();
                iterator.Next();
            }
            //drugi
            Box box = new Box();

            box.AddProduct(new Product("Fish", 10.99));
            box.AddProduct(new Product("Chips", 10.99));
            box.AddProduct(new Product("Meat", 10.99));
            box.AddProduct(new Product("Soda", 10.99));

            IAbstractIteratorBox iteratorBox = box.GetIterator();

            while (!iteratorBox.IsDone)
            {
                Console.WriteLine(iteratorBox.Current.ToString());
                iteratorBox.Next();
            }

            //treci
            CareTaker history = new CareTaker();

            ToDoItem item = new ToDoItem("Mission", "Important", DateTime.Now);

            Console.WriteLine(item.ToString());
            history.Store(item.StoreState());
            item.Rename("Task");
            Console.WriteLine(item.ToString());
            item.RestoreState(history.PreviousState());
            Console.WriteLine(item.ToString());

            //cetvrti

            BankAccount account      = new BankAccount("Me", "Here", 500.0m);
            MementoBank previosState = account.StoreState();

            Console.WriteLine(account.ToString());
            account.UpdateBalance(1000.0m);
            Console.WriteLine(account.ToString());
            account.RestoreState(previosState);
            Console.WriteLine(account.ToString());
        }