Assuming the DataService has been registered in the providers for the application, which answer best describes what happens based on this component's constructor?
@Component({
...
})
export class OrderHistoryComponent {
constructor(private dataService: DataService) {}
...
}