src/app/app.component.ts
selector | body |
template |
|
constructor(companyProfilesService: CompanyProfilesService)
|
||||||||
Defined in src/app/app.component.ts:11
|
||||||||
Parameters :
|
import {Component} from "@angular/core";
import {CompanyProfilesService} from "./core/profile/company-profiles.service";
@Component({
selector: 'body',
template: `
<router-outlet></router-outlet>
<crm-notifications></crm-notifications>
`
})
export class AppComponent {
constructor(private companyProfilesService: CompanyProfilesService) {
}
}