(model, name, isStatic, handler)
| 69 | } |
| 70 | |
| 71 | _registerMethodHandler(model, name, isStatic, handler) { |
| 72 | if(!this._getList(isStatic)[model]) this._getList(isStatic)[model] = []; |
| 73 | this._getList(isStatic)[model][name] = handler; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | const instance = new DataModelManager(); |