+ vendor
This commit is contained in:
parent
9573c340ba
commit
9945ff4bb2
@ -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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user