PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BusinessLogicsContracts/IImplementerLogic.cs
Arkadiy Radaev e9c62b734f res 6
2024-05-15 15:07:11 +04:00

20 lines
495 B
C#

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);
}
}