How to use a common service for multiple modules?
I have service
@Injectable() export class TestService { test(): number { return 123; } }