dynamicsmobile
Version:
Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com
21 lines • 937 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MobileDmsApplicationService = void 0;
const tslib_1 = require("tslib");
const injectable_1 = require("../ioc/injectable");
/**
* The class contains "globally" accessesed variables.
* They are meant to be accessible across the components (views, datamodels) of the app
*/
let MobileDmsApplicationService = exports.MobileDmsApplicationService = class MobileDmsApplicationService {
constructor(appCode, version, currentTask) {
this.appCode = appCode;
this.version = version;
this.currentTask = currentTask;
}
};
exports.MobileDmsApplicationService = MobileDmsApplicationService = tslib_1.__decorate([
(0, injectable_1.Injectable)({ singleton: true }),
tslib_1.__metadata("design:paramtypes", [String, String, String])
], MobileDmsApplicationService);
//# sourceMappingURL=mobile-applicationcontext-service.js.map