Exemplo n.º 1
0
        public ConcreteObserver(ViewModel.Start c, Model.ConcreteSubject m)
        {
            model      = m;
            controller = c;

            model.attach(this);

            InitializeComponent();
            this.Show();
        }
Exemplo n.º 2
0
 public App()
 {
     appEntry = new ViewModel.Start();
 }