16 lines
490 B
C#
16 lines
490 B
C#
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);
|
|
}
|
|
}
|