12 lines
389 B
C#
12 lines
389 B
C#
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);
|
|
}
|
|
}
|