<div class="productClass"> Ürün Kimliği {{product.productId}}<br/> <label>Ürün Adı:</label> <input [(ngModel)]="product.productName"/><br/> Satış Ederi {{product.salesPrice}}<br/> </div> <div> <table> <tr *ngFor="let product of products" (click)="onProductClick(product)"> <td>{{product.productId}}</td> <td>{{product.productName}}</td> <td>{{product.salesPrice}}</td> </tr> </table> </div>Dosyayı İndir