Browse Source

readonlys missing in service declarations

readonlys missing in service declarations
pull/1343/head
william-keller 4 years ago
committed by GitHub
parent
commit
569840d356
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/CheckoutViewModel.cs

+ 5
- 5
src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/CheckoutViewModel.cs View File

@ -22,10 +22,10 @@ namespace eShopOnContainers.Core.ViewModels
private Order _order;
private Address _shippingAddress;
private ISettingsService _settingsService;
private IBasketService _basketService;
private IOrderService _orderService;
private IUserService _userService;
private readonly ISettingsService _settingsService;
private readonly IBasketService _basketService;
private readonly IOrderService _orderService;
private readonly IUserService _userService;
public CheckoutViewModel(
ISettingsService settingsService,
@ -212,4 +212,4 @@ namespace eShopOnContainers.Core.ViewModels
return total;
}
}
}
}

Loading…
Cancel
Save