PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarContracts/BusinessLogicsContracts/IClientLogic.cs

16 lines
454 B
C#
Raw Normal View History

using SushiBar.BindingModels;
using SushiBar.ViewModels;
using SushiBar.SearchModels;
namespace SushiBar.BusinessLogicsContracts
{
public interface IClientLogic
{
List<ClientViewModel>? ReadList(ClientSearchModel? model);
ClientViewModel? ReadElement(ClientSearchModel model);
bool Create(ClientBindingModel model);
bool Update(ClientBindingModel model);
bool Delete(ClientBindingModel model);
}
}