You want to create an injectable service myService that can be used anywhere in your application. You write a snippet as given here: code example

Example 1: make service in angular 8

For Creating Service you have type command like below
ng generate service service-name
or
ng g s service-name

And if you want to make service into folder
ng generate service /folder-name/service-name
or
ng g s /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){}