123456789101112131415161718192021222324252627282930313233 |
- var Bizgaze;
- (function (Bizgaze) {
- let Apps;
- (function (Apps) {
- let Hrms;
- (function (Hrms) {
- let Payroll;
- (function (Payroll) {
- let Controls;
- (function (Controls) {
- let PayRun;
- (function (PayRun) {
- class UpdatePayRunDetails_Settings extends Unibase.Platform.Core.BaseComponent {
- loadSettingHtml(container) { }
- bindControlData(controldatajson) { }
- SaveControlData(controldatajson) { }
- loadControlPropertiesHtml(controlpropList, container) { }
- bindPropertySettings(prop) { }
- savePropertySettings(prop) { }
- static Instance() {
- if (this.instance === undefined) {
- this.instance = new UpdatePayRunDetails_Settings();
- }
- return this.instance;
- }
- }
- PayRun.UpdatePayRunDetails_Settings = UpdatePayRunDetails_Settings;
- })(PayRun = Controls.PayRun || (Controls.PayRun = {}));
- })(Controls = Payroll.Controls || (Payroll.Controls = {}));
- })(Payroll = Hrms.Payroll || (Hrms.Payroll = {}));
- })(Hrms = Apps.Hrms || (Apps.Hrms = {}));
- })(Apps = Bizgaze.Apps || (Bizgaze.Apps = {}));
- })(Bizgaze || (Bizgaze = {}));
|