public HandModifiedDataController(HandModifiedDataModel model, SecurityModel securityModel, CommandsStoreInterface commandsStore) { this.model = model; this.securityModel = securityModel; this.securityModel.subscribe(this); this.commandsStore = commandsStore; }
public HandModifiedDataView(Form1 form, HandModifiedDataModel model) { this.form = form; this.model = model; model.subscribe(this); TablesStructureCreater creater = new TablesStructureCreater(); creater.create(form); }