1234567891011121314151617 |
- var Unibase;
- (function (Unibase) {
- let Platform;
- (function (Platform) {
- let Core;
- (function (Core) {
- class BaseManager {
- dataHelper() {
- if (this._dataHelper === undefined || this._dataHelper === null)
- this._dataHelper = new Platform.Helpers.DataHelper();
- return this._dataHelper;
- }
- }
- Core.BaseManager = BaseManager;
- })(Core = Platform.Core || (Platform.Core = {}));
- })(Platform = Unibase.Platform || (Unibase.Platform = {}));
- })(Unibase || (Unibase = {}));
|