how to inject a service in another service angular constructor code example
Example: angular how to use service in class
import { <service name>Service } from '../<service path>';
you can inject service in components constructor:
constructor(public anyService: Service){}