(accessor: BaseDataAccessor, object: any)
| 22 | testid!: number; |
| 23 | |
| 24 | constructor(accessor: BaseDataAccessor, object: any) { |
| 25 | super(accessor, "tests", String(object.testid)); |
| 26 | this.update(object); |
| 27 | } |
| 28 | |
| 29 | update(object: any) { |
| 30 | this.testid = object.testid; |