Ejemplo n.º 1
0
        public SMObserver(ListBox listBox, SMSubject smSubject)
        {
            currStatus = null;

            this.listBox = listBox;
            this.smSubject = smSubject;

            smSubject.AddObserver(this);
        }
Ejemplo n.º 2
0
        public SMObserver(ListBox listBox, SMSubject smSubject)
        {
            currStatus = null;

            this.listBox   = listBox;
            this.smSubject = smSubject;

            smSubject.AddObserver(this);
        }