16 lines
542 B
C#
16 lines
542 B
C#
using ComputerHardwareStoreContracts.BindingModels;
|
|
using ComputerHardwareStoreContracts.SearchModels;
|
|
using ComputerHardwareStoreContracts.ViewModels;
|
|
|
|
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);
|
|
}
|
|
}
|