I created panel where I can change the status of the order. List is displayed correctly but there is one problem, because when I set the value in one list it will set the same value in all the others.How to change it?

<table id="cart" class="table table-hover" *ngFor="let order of userOrderList" >
<thead style="background-color: #F0F8FF">
<tr>
<th style="width:20%; text-align: left"><strong>Order id: </strong> {{order.orderId}}</th>
<th style="width:30%; text-align: left"><strong>Date: </strong>{{order.dateCreated}}</th>
<select [(ngModel)]="orderSelected" >
<option *ngFor='let item of orderState | keys' [value]="item.key" >{{item.value}}</option>
</select>
<th style="width:40%; text-align: right; color: red">Total cost: {{order.totalPrice}}</th>
</tr>
</thead>
<tbody *ngFor="let productOrder of order.OrderIteams" style="border: none">
<div class="col-sm-4" [routerLink]="['/products-details', productOrder.Product.Id] " ><img src="{{productOrder.Product.Image}}" style="max-width:150px;max-height:150px;padding-top:10px; padding-right:50px " class="img-responsive"/></div>
<div class="col-sm-8">
<strong> {{productOrder.Product.Name}}</strong>
</div>
</tbody>
</table>