import {Component, Input, OnInit} from '@angular/core'; import {AllService} from '../../../../all.service'; import {ActivatedRoute} from '@angular/router'; @Component({ selector: 'jhi-contract-guarantees', templateUrl: './contract-guarantees.component.html', styleUrls: ['./contract-guarantees.component.css'] }) export class ContractGuaranteesComponent implements OnInit { @Input() loans: Array = []; @Input() model = null; @Input() isForever = false; @Input() isAxeria = false; @Input() environnementName = ''; @Input() lessThanThousand = false; constructor(public allService: AllService, private route: ActivatedRoute) {} ngOnInit(): void { } }