Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Boss huhansan = new Boss();

            StockObserver tongshi1 = new StockObserver("Wei");

            huhansan.ActionNotify += tongshi1.CloseStockMarket;

            huhansan.Notify();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Boss huhansan = new Boss();

            StockObserver tongshi1 = new StockObserver("Wei");

            huhansan.ActionNotify += tongshi1.CloseStockMarket;

            huhansan.Notify();
        }