I want to inject a service to another service:
@Injectable()
export class Dispatcher {
}
@Injectable()
export class TodoStore {
constructor(@Inject(Dispatcher) dispatcher:Dispatcher){
}
}
But I always get Error: No provider for Dispatcher!
Thanks.