db-tables.ts 779 Bytes
export class State {
    constructor(
        public Id: number,
        public StateName: string
    ) { }
}

export class Country {
    constructor(
        public Id: number,
        public Name: string
    ) { }
}

export class AccountType {
    constructor(
        public Id: number,
        public Title: string
    ) { }

    public static createEmptyAccountType(): AccountType {
        return new AccountType(0, "");
    }
}

export class SecurityQuestions {
    constructor(
        public Id: number,
        public Title: string
    ) { }
}

export class LicenseType {
    constructor(
        public Id: number,
        public Title: string
    ) { }
}

export class UserType {
    constructor(
        public Id: number,
        public Title: string
    ) { }
}