Polevoy S.V. LabWork02_hard #4

Closed
ChipsEater wants to merge 9 commits from LabWork02_hard into LabWork01_hard
Showing only changes of commit e59ed7e076 - Show all commits

View File

@ -177,9 +177,9 @@ namespace FlowerShopBusinessLogic.BusinessLogics
foreach (var shop in _shopStorage.GetFullList())
{
freeSpace += shop.MaxCountBouquets;
foreach (var doc in shop.ShopBouquets)
foreach (var bouq in shop.ShopBouquets)
{
freeSpace -= doc.Value.Item2;
freeSpace -= bouq.Value.Item2;
}
}