hravemzdy.procezor
Version:
payroll-procezor Salary, Health, Social, Taxing Properties for years 2010-2022
15 lines • 599 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContractCode = void 0;
var ContractCode = /** @class */ (function () {
function ContractCode(code) {
this.value = code;
}
ContractCode.zero = function () { return ContractCode.new(); };
ContractCode.new = function () { return new ContractCode(ContractCode.ZERO_VALUE); };
ContractCode.get = function (value) { return new ContractCode(value); };
ContractCode.ZERO_VALUE = 0;
return ContractCode;
}());
exports.ContractCode = ContractCode;
//# sourceMappingURL=ContractCode.js.map