PIbd-22_Bazunov_A.I._SushiBar/SushiBar/SushiBarContracts/BusinessLogicsContracts/IClientLogic.cs

14 lines
455 B
C#
Raw Normal View History

2023-03-26 16:43:18 +04:00
using SushiBarContracts.BindingModels;
using SushiBarContracts.SearchModels;
using SushiBarContracts.ViewModels;
namespace SushiBarContracts.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);
}