PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BusinessLogicsContracts/IGiftLogic.cs
Arkadiy Radaev f31982e59f res1
2024-02-06 12:37:25 +04:00

18 lines
476 B
C#

using GiftShopContracts.BindingModels;
using GiftShopContracts.SearchModels;
using GiftShopContracts.ViewModels;
namespace GiftShopContracts.BusinessLogicsContracts
{
public interface IGiftLogic
{
List<GiftViewModel>? ReadList(GiftSearchModel? model);
GiftViewModel? ReadElement(GiftSearchModel model);
bool Create(GiftBindingModel model);
bool Update(GiftBindingModel model);
bool Delete(GiftBindingModel model);
}
}