Ejemplo n.º 1
0
        public BPMController(IBPMModel model)
        {
            this.model = model; bpmview = new BPMView(model, this);

            //we create view here
            bpmview.createView();
            bpmview.createControls();
        }
Ejemplo n.º 2
0
 public BPMView(IBPMModel model, IBPMController controller)
 {
     this.model = model; this.controller = controller;
     model.registerObserver(this);
 }