I\'ve got a problem loading a class into an Angular component. I\'ve been trying to solve it for a long time; I\'ve even tried joining it all in a single file. What I have i
add your service to providers[] array in app.module.ts file. Like below
// here my service is CarService
app.module.ts
import {CarsService} from './cars.service'; providers: [CarsService] // you can include as many services you have