dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_ContactModule cluster_ContactModule_declarations cluster_ContactModule_imports cluster_ContactModule_providers ContactComponent ContactComponent ContactModule ContactModule ContactComponent->ContactModule ContactUpdateComponent ContactUpdateComponent ContactUpdateComponent->ContactModule SearchModule SearchModule SearchModule->ContactModule SharedModule SharedModule SharedModule->ContactModule SpeedDialModule SpeedDialModule SpeedDialModule->ContactModule ContactService ContactService ContactService->ContactModule

File

src/app/crm/contact/contact.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';
import { SharedModule } from '../../shared/shared.module';
import { SearchModule } from '../../component/search';
import { SpeedDialModule } from '../../component/speed-dial';

import { ContactComponent, ContactUpdateComponent } from './contact.component';
import { ContactService } from './contact.service';

@NgModule({
  imports: [
    CommonModule,
    HttpClientModule,
    SharedModule,
    SearchModule,
    SpeedDialModule
  ],
  declarations: [ContactComponent, ContactUpdateComponent],
  entryComponents: [ContactUpdateComponent],
  providers: [ContactService]
})
export class ContactModule {}

result-matching ""

    No results matching ""