db-tables.js 1.08 KB
"use strict";
var State = (function () {
    function State(Id, StateName) {
        this.Id = Id;
        this.StateName = StateName;
    }
    return State;
}());
exports.State = State;
var Country = (function () {
    function Country(Id, Name) {
        this.Id = Id;
        this.Name = Name;
    }
    return Country;
}());
exports.Country = Country;
var AccountType = (function () {
    function AccountType(Id, Title) {
        this.Id = Id;
        this.Title = Title;
    }
    AccountType.createEmptyAccountType = function () {
        return new AccountType(0, "");
    };
    return AccountType;
}());
exports.AccountType = AccountType;
var SecurityQuestions = (function () {
    function SecurityQuestions(Id, Title) {
        this.Id = Id;
        this.Title = Title;
    }
    return SecurityQuestions;
}());
exports.SecurityQuestions = SecurityQuestions;
var LicenseType = (function () {
    function LicenseType(Id, Title) {
        this.Id = Id;
        this.Title = Title;
    }
    return LicenseType;
}());
exports.LicenseType = LicenseType;
//# sourceMappingURL=db-tables.js.map