BACKDEV-405 #5

Merged
bekodeg merged 11 commits from BACKDEV-405 into dev 2024-04-25 21:42:22 +04:00
Showing only changes of commit 9945ff4bb2 - Show all commits

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);
}
}