Skip to content

Commit 6bddcca

Browse files
committed
Produts renamed as products
1 parent 5a2f5bb commit 6bddcca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

EssentialUIKit/ViewModels/Ecommerce/CartPageViewModel.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class CartPageViewModel : INotifyPropertyChanged
3030

3131
private double percent;
3232

33-
private ObservableCollection<Product> produts;
33+
private ObservableCollection<Product> products;
3434

3535
private Command placeOrderCommand;
3636

@@ -158,15 +158,15 @@ public ObservableCollection<Product> Products
158158
{
159159
get
160160
{
161-
return this.produts;
161+
return this.products;
162162
}
163163
set
164164
{
165-
if (this.produts == value)
165+
if (this.products == value)
166166
{
167167
return;
168168
}
169-
this.produts = value;
169+
this.products = value;
170170
this.NotifyPropertyChanged();
171171
GetProducts(Products);
172172
UpdatePrice();

0 commit comments

Comments
 (0)