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

18 lines
516 B
C#

using GiftShopContracts.BindingModels;
using GiftShopContracts.SearchModels;
using GiftShopContracts.ViewModels;
namespace GiftShopContracts.BusinessLogicsContracts
{
public interface IComponentLogic
{
List<ComponentViewModel>? ReadList(ComponentSearchModel? model);
ComponentViewModel? ReadElement(ComponentSearchModel model);
bool Create(ComponentBindingModel model);
bool Update(ComponentBindingModel model);
bool Delete(ComponentBindingModel model);
}
}