From 40f96fe6c1d9f4227ab2238e6c5fad412e5740d2 Mon Sep 17 00:00:00 2001 From: dex_moth Date: Wed, 24 Apr 2024 19:08:06 +0400 Subject: [PATCH] + vendor --- .../BusinessLogicsContracts/IVendorLogic.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ComputerHardwareStore/ComputerHardwareStoreContracts/BusinessLogicsContracts/IVendorLogic.cs diff --git a/ComputerHardwareStore/ComputerHardwareStoreContracts/BusinessLogicsContracts/IVendorLogic.cs b/ComputerHardwareStore/ComputerHardwareStoreContracts/BusinessLogicsContracts/IVendorLogic.cs new file mode 100644 index 0000000..821555a --- /dev/null +++ b/ComputerHardwareStore/ComputerHardwareStoreContracts/BusinessLogicsContracts/IVendorLogic.cs @@ -0,0 +1,11 @@ +namespace ComputerHardwareStoreContracts.BusinessLogicsContracts +{ + public interface IVendorLogic + { + List? ReadList(VendorSearchModel? model); + VendorViewModel? ReadElement(VendorSearchModel model); + bool Create(VendorBindingModel model); + bool Update(VendorBindingModel model); + bool Delete(VendorBindingModel model); + } +}