PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BusinessLogicsContracts/IImplementerLogic.cs

20 lines
495 B
C#
Raw Normal View History

2024-05-15 15:07:11 +04:00
using GiftShopContracts.BindingModels;
using GiftShopContracts.SearchModels;
using GiftShopContracts.ViewModels;
namespace GiftShopContracts.BusinessLogicsContracts
{
public interface IImplementerLogic
{
List<ImplementerViewModel>? ReadList(ImplementerSearchModel? model);
ImplementerViewModel? ReadElement(ImplementerSearchModel model);
bool Create(ImplementerBindingModel model);
bool Update(ImplementerBindingModel model);
bool Delete(ImplementerBindingModel model);
}
}