db-tables.ts
779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
) { }
}