20 lines
526 B
C#
20 lines
526 B
C#
|
using BookShopContracts.BindingModels;
|
|||
|
using BookShopContracts.SearchModels;
|
|||
|
using BookShopContracts.ViewModels;
|
|||
|
|
|||
|
namespace BookShopContracts.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);
|
|||
|
}
|
|||
|
}
|