Skip to content

Instantly share code, notes, and snippets.

Created June 14, 2017 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/cea8bb5c64a7b29ea1cbd755bf1020ed to your computer and use it in GitHub Desktop.
Save anonymous/cea8bb5c64a7b29ea1cbd755bf1020ed to your computer and use it in GitHub Desktop.
ngOnInit() {
this.objectService.getRecords().subscribe(res=> {
// mis operaciones
});
this.objectService2.getRecords().subscribe(res=> {
// mis operaciones
});
}
ngOnInit() {
this.objectService.getRecords().subscribe(res=> {
// mis operaciones
this.objectService2.getRecords().subscribe(res=> {
// mis operaciones
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment