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

            creater.create(form);
        }