lil fix, i missed smth...

This commit is contained in:
Никита Волков 2024-11-25 19:42:55 +04:00
parent 0cc35afbac
commit 51d23f547c
2 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ namespace InternetShopOrdersApp
public bool DeleteElement(PluginsConventionElement element) public bool DeleteElement(PluginsConventionElement element)
{ {
_orderLogic.Delete(new InternetShopOrdersContracts.BindingModels.OrderBindingModel { Id = element.GetHashCode() }); _orderLogic.Delete(new InternetShopOrdersContracts.BindingModels.OrderBindingModel { Id = element.Id.GetHashCode() });
return true; return true;
} }