Exemplo n.º 1
0
 public ModelingController(ModelingModel model,
                           HandModifiedDataModel handModifiedDataModel, CommandsStoreInterface commandsStore)
 {
     this.model = model;
     this.handModifiedDataModel = handModifiedDataModel;
     this.handModifiedDataModel.subscribe(this);
     this.commandsStore = commandsStore;
 }
 public HandModifiedDataController(HandModifiedDataModel model,
                                   SecurityModel securityModel, CommandsStoreInterface commandsStore)
 {
     this.model         = model;
     this.securityModel = securityModel;
     this.securityModel.subscribe(this);
     this.commandsStore = commandsStore;
 }