fix ShopLogic
This commit is contained in:
parent
cc2bb7f7f5
commit
69fb9400f4
@ -100,6 +100,12 @@ namespace FlowerShopBusinessLogic.BusinessLogics
|
||||
_logger.LogWarning("MakeSupply(GetElement). Element not found");
|
||||
return false;
|
||||
}
|
||||
int CurrentRepairsNum = shop.ShopFlowers.Select(x => x.Value.Item2).Sum();
|
||||
if (count > (shop.MaximumFlowers - CurrentRepairsNum))
|
||||
{
|
||||
_logger.LogWarning("Попытка добавить в магазин число элементов, большее RepairsMaxCount");
|
||||
return false;
|
||||
}
|
||||
if (shop.ShopFlowers.ContainsKey(flower.Id))
|
||||
{
|
||||
var shopFlower = shop.ShopFlowers[flower.Id];
|
||||
|
Loading…
Reference in New Issue
Block a user