Skip to content

Instantly share code, notes, and snippets.

@andrewarosario
Created November 23, 2020 10:53
Show Gist options
  • Save andrewarosario/a058a8291330783706454295d3d20beb to your computer and use it in GitHub Desktop.
Save andrewarosario/a058a8291330783706454295d3d20beb to your computer and use it in GitHub Desktop.
@NgModule({
imports: [
VendaModule
]
providers: [
VendaAdminService,
{
provide: VendaService,
useClass: VendaAdminService
}
]
})
export class VendaAdminModule {}
@NgModule({
imports: [
VendaModule
]
providers: [
VendaComercialService,
{
provide: VendaService,
useClass: VendaComercialService
}
]
})
export class VendaComercialModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment