1234567891011121314151617181920212223242526272829303132333435363738 |
- var Bizgaze;
- (function (Bizgaze) {
- let Apps;
- (function (Apps) {
- let Transact;
- (function (Transact) {
- let Controls;
- (function (Controls) {
- class Voucher_Settings {
- loadSettingHtml() {
- return ``;
- }
- bindControlData(controldatajson) {
- return "";
- }
- SaveControlData(controldatajson) {
- return "";
- }
- loadControlPropertiesHtml(Container) {
- return ``;
- }
- bindPropertySettings(prop) {
- return ``;
- }
- savePropertySettings(prop) {
- return "";
- }
- static Instance() {
- if (this._instance === undefined)
- this._instance = new Voucher_Settings();
- return this._instance;
- }
- }
- Controls.Voucher_Settings = Voucher_Settings;
- })(Controls = Transact.Controls || (Transact.Controls = {}));
- })(Transact = Apps.Transact || (Apps.Transact = {}));
- })(Apps = Bizgaze.Apps || (Bizgaze.Apps = {}));
- })(Bizgaze || (Bizgaze = {}));
|