app.mock.module.ts 572 Bytes
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';


import { AppComponent } from './app.component';
import { AppMockService } from './shared/app.mock.service';
import { AppService } from './shared/app.service';
import { OrganizationModule } from './organization/organization.module';


@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    OrganizationModule
  ],
  providers: [{ provide: AppService, useClass: AppMockService}],
  bootstrap: [AppComponent]
})
export class AppModule { }