Add fields to Employee SQL
This commit is contained in:
@@ -13,10 +13,4 @@ export class Company {
|
||||
public stateOrRegion: string = "";
|
||||
public city: string = "";
|
||||
public description: string = "";
|
||||
}
|
||||
|
||||
export class Employee {
|
||||
public id: number | null = null;
|
||||
public accountID: number = 0;
|
||||
public company: Company = new Company;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import { Company } from "./Company";
|
||||
|
||||
export class Employee {
|
||||
public id: number | null = null;
|
||||
public accountID: number = 0;
|
||||
public accountName: string = "";
|
||||
public accountEmail: string = "";
|
||||
public company: Company = new Company;
|
||||
}
|
||||
Reference in New Issue
Block a user