I have a parent service which has some dependencies like
@Injectable() export class ParentService{ constructor(private http:Http, private customService:Cus
If you make the DI services in the abstract class protected and omit the constructor in the subclass, then the services are available in the subclass.
protected