This commit is contained in:
dex_moth 2024-04-24 19:08:06 +04:00
parent c70fddda2c
commit 40f96fe6c1

View File

@ -0,0 +1,11 @@
namespace ComputerHardwareStoreContracts.BusinessLogicsContracts
{
public interface IVendorLogic
{
List<VendorViewModel>? ReadList(VendorSearchModel? model);
VendorViewModel? ReadElement(VendorSearchModel model);
bool Create(VendorBindingModel model);
bool Update(VendorBindingModel model);
bool Delete(VendorBindingModel model);
}
}