Change employee to a left join

This commit is contained in:
2025-07-20 21:14:39 -07:00
parent a5573dce4e
commit fb7e37bfb0
6 changed files with 91 additions and 12 deletions
+1 -1
View File
@@ -16,5 +16,5 @@ export class Company {
export class Employee {
public id: number = 0;
public accountID: number = 0;
public companyID: number = 0;
public company: Company = new Company;
}