constructor(private pdpService : PdpService, private tostr : ToastrService) { }
ngOnInit() {
this.pdpService.getData();
this.resetForm();
}
What is inside the constructor does not show me the form with which I am working. If I take out what is inside, it appears. What am I doing wrong?