Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Commit

Permalink
add required instance objects to CollectionComponent to resolve build…
Browse files Browse the repository at this point in the history
… errors
  • Loading branch information
kelvinikome committed Sep 26, 2018
1 parent 3e15338 commit b0d4704
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/app/collection/collection.component.ts
@@ -1,12 +1,15 @@
import {Component, OnInit} from '@angular/core';
import {ActivatedRoute, Params, Router} from '@angular/router';
import {Employee} from '../services/office/domain/employee.model';
import {Employee, Center} from '../services/office/domain/employee.model';
import {FetchRequest} from '../services/domain/paging/fetch-request.model';
import {TableData} from '../common/data-table/data-table.component';
import {Store} from '@ngrx/store';
import * as fromRoot from '../store';
import {Observable} from 'rxjs/Observable';
import {SEARCH} from '../store/employee/employee.actions';
import { Staff } from '../services/domain/center/staff';
import { Office } from '../services/office/domain/office.model';
import { Group } from '../services/domain/group/group';



Expand All @@ -21,6 +24,11 @@ export class CollectionComponent implements OnInit {

loading$: Observable<boolean>;

staffs: Staff[] = [];
offices: Office[] = [];
centers: Center[] = [];
groups: Group[] = [];

columns: any[] = [
{ name: 'name', label: 'Name' },
{ name: 'accountNumber', label: 'Account #' },
Expand Down
3 changes: 3 additions & 0 deletions src/app/services/domain/group/group.ts
@@ -0,0 +1,3 @@
export interface Group {

}

0 comments on commit b0d4704

Please sign in to comment.