123456789101112131415161718 |
- var Unibase;
- (function (Unibase) {
- let Platform;
- (function (Platform) {
- let Core;
- (function (Core) {
- class BaseComponent {
- constructor() {
- this.fileCacheHelper = Unibase.Platform.Helpers.FileCacheHelper.Instance();
- this.navigationHelper = Unibase.Platform.Helpers.NavigationHelper.Instance();
- this.appSettings = new Unibase.Platform.Core.AppSettings();
- this.currentUser = Unibase.Platform.Membership.Infos.Identity.currentUser;
- }
- }
- Core.BaseComponent = BaseComponent;
- })(Core = Platform.Core || (Platform.Core = {}));
- })(Platform = Unibase.Platform || (Unibase.Platform = {}));
- })(Unibase || (Unibase = {}));
|