Ensure that your service is registered in the list of providers of a NgModule or has the Injectable decorator with a providedIn property at top.
import { Injectable } from '@angular/core';
@Injectable({providedIn:'root'})
export class DataService {
}