Converted tabs to spaces

This commit is contained in:
Robert Raboud 2018-02-27 15:05:41 -05:00
parent 7998edc15a
commit 8ef122fea2

View File

@ -30,10 +30,10 @@ namespace Microsoft.eShopOnContainers.Services.Basket.API.IntegrationEvents.Even
private async Task UpdatePriceInBasketItems(int productId, decimal newPrice, decimal oldPrice, CustomerBasket basket)
{
string match = productId.ToString();
var itemsToUpdate = basket?.Items?.Where(x => x.ProductId == match).ToList();
string match = productId.ToString();
var itemsToUpdate = basket?.Items?.Where(x => x.ProductId == match).ToList();
if (itemsToUpdate != null)
if (itemsToUpdate != null)
{
foreach (var item in itemsToUpdate)
{