app.module.ts:
import {NgModule} from '@angular/core';
import {IonicApp, IonicModule} from 'ionic-angular';
import {AppComponent} from './app.component';
import ...
@NgModule({
    declarations: [
        AppComponent,
        HomeComponent,
        AboutComponent,
        TopNavComponent,
        CardControlComponent,
        SelectWicProviderComponent,
        KeyEnterUPCComponent,
        WicRegisterCardComponent,
        ManageCardsComponent,
        WebViewComponent,
        ItemDetailPageComponent,
        ItemDetailListComponent,
        BenefitsPageComponent,
        PartnersComponent,
        SettingsComponent,
        ViewWicVendorsComponent,
        WicVendorDetailComponent,
        WicVendorFavoritesComponent,
        WicVendorListComponent,
        VendorTabsComponent,
        WicOfficeListComponent,
        WicOfficeDetailComponent,
        WicOfficeViewComponent,
        OfficeTabsComponent
    ],
    imports: [
        IonicModule.forRoot(AppComponent)
    ],
    bootstrap: [IonicApp],
    entryComponents: [
        AppComponent,
        HomeComponent,
        AboutComponent,
        SelectWicProviderComponent,
        KeyEnterUPCComponent,
        WicRegisterCardComponent,
        ManageCardsComponent,
        WebViewComponent,
        ItemDetailPageComponent,
        BenefitsPageComponent,
        ItemDetailListComponent,
        PartnersComponent,
        ViewWicVendorsComponent,
        WicVendorDetailComponent,
        WicVendorFavoritesComponent,
        WicVendorListComponent,
        VendorTabsComponent,
        SettingsComponent,
        WicOfficeListComponent,
        WicOfficeDetailComponent,
        WicOfficeViewComponent,
        OfficeTabsComponent
    ],
    providers: [CookieService, SessionService, RestService, XML2JSON]
})
export class AppModule {
}