Допилил ShopStorage

This commit is contained in:
Никита Потапов 2024-05-20 11:53:28 +04:00
parent 61650ce283
commit 9fcaacc821

View File

@ -2,6 +2,7 @@
using SecuritySystemContracts.SearchModels;
using SecuritySystemContracts.StoragesContracts;
using SecuritySystemContracts.ViewModels;
using SecuritySystemDataModels.Models;
using SecuritySystemListImplement.Models;
namespace SecuritySystemListImplement.Implements
@ -117,5 +118,10 @@ namespace SecuritySystemListImplement.Implements
return null;
}
public bool SellSecures(ISecureModel secureModel, int securesCount)
{
throw new NotImplementedException();
}
}
}