Ejemplo n.º 1
0
 public BPMController(IBPMModelInterface model)
 {
     this.model = model; view = new DJView(model, this);
 }
Ejemplo n.º 2
0
 public DJView(IBPMModelInterface model, IBPMController controller)
 {
     this.model = model; this.controller = controller;
     model.registerBPMObserver(this);
 }