2024-04-24 18:37:36 +04:00
|
|
|
|
using ComputerHardwareStoreContracts.BindingModels;
|
|
|
|
|
using ComputerHardwareStoreContracts.SearchModels;
|
|
|
|
|
using ComputerHardwareStoreContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace ComputerHardwareStoreContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
2024-04-30 14:36:36 +04:00
|
|
|
|
public interface IStoreKeeperLogic
|
2024-04-24 18:37:36 +04:00
|
|
|
|
{
|
2024-04-30 14:36:36 +04:00
|
|
|
|
List<StoreKeeperViewModel>? ReadList(StoreKeeperSearchModel? model);
|
|
|
|
|
StoreKeeperViewModel? ReadElement(StoreKeeperSearchModel model);
|
|
|
|
|
bool Create(StoreKeeperBindingModel model);
|
|
|
|
|
bool Update(StoreKeeperBindingModel model);
|
|
|
|
|
bool Delete(StoreKeeperBindingModel model);
|
|
|
|
|
}
|
2024-04-24 18:37:36 +04:00
|
|
|
|
}
|