Created
November 23, 2020 10:53
-
-
Save andrewarosario/a058a8291330783706454295d3d20beb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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