angular build a service that provides a component code example
Example 1: angular create a service
>>> ng generate service service_name
or
>>> ng generate service /folder-name/service-name
Example 2: how to inject service in component angular 6
you can inject service in components constructor:
constructor(public anyService: Service){}