SUBD_SushiBar/SushiBar/SushiBarContracts/BusinessLogicContracts/IBuyerLogic.cs

23 lines
626 B
C#
Raw Normal View History

2024-03-26 19:41:39 +04:00
using SushiBarContracts.BindingModels;
using SushiBarContracts.SearchModels;
using SushiBarContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.BusinessLogicContracts
{
public interface IBuyerLogic
{
List<BuyerViewModel>? ReadList(BuyerSearchModel? model);
BuyerViewModel? ReadElement(BuyerSearchModel model);
bool Create(BuyerBindingModel model);
bool Update(BuyerBindingModel model);
bool Delete(BuyerBindingModel model);
2024-05-07 21:53:37 +04:00
void ClearEntity();
2024-03-26 19:41:39 +04:00
}
}