dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_PaymentModule cluster_PaymentModule_declarations cluster_PaymentModule_imports cluster_PaymentModule_providers PaymentComponent PaymentComponent PaymentModule PaymentModule PaymentComponent->PaymentModule PaymentModesListComponent PaymentModesListComponent PaymentModesListComponent->PaymentModule PaymentModeComponent PaymentModeComponent PaymentModeComponent->PaymentModule CreditCardComponent CreditCardComponent CreditCardComponent->PaymentModule NetBankingComponent NetBankingComponent NetBankingComponent->PaymentModule CashOnDeliveryComponent CashOnDeliveryComponent CashOnDeliveryComponent->PaymentModule RouterModule RouterModule RouterModule->PaymentModule CommonModule CommonModule CommonModule->PaymentModule FormsModule FormsModule FormsModule->PaymentModule ReactiveFormsModule ReactiveFormsModule ReactiveFormsModule->PaymentModule PaymentService PaymentService PaymentService->PaymentModule
import { PaymentService } from './services/payment.service';
import { PaymentComponent } from './payment.component';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';
import { PaymentModesListComponent } from './payment-modes-list/payment-modes-list.component';
import { PaymentModeComponent } from './payment-modes-list/payment-mode/payment-mode.component';
import { CreditCardComponent } from './payment-modes-list/credit-card/credit-card.component';
import { NetBankingComponent } from './payment-modes-list/net-banking/net-banking.component';
import { CashOnDeliveryComponent } from './payment-modes-list/cash-on-delivery/cash-on-delivery.component';

@NgModule({
  declarations: [
    PaymentComponent,
    PaymentModesListComponent,
    PaymentModeComponent,
    CreditCardComponent,
    NetBankingComponent,
    CashOnDeliveryComponent
  ],
  exports: [],
  imports: [
    RouterModule,
    CommonModule,
    FormsModule,
    ReactiveFormsModule
  ],
  providers: [
    PaymentService
  ]
})
export class PaymentModule { }

results matching ""

    No results matching ""