2024-04-21 23:49:07 +04:00
|
|
|
|
using TravelCompanyContracts.BindingModels;
|
2024-04-17 10:36:40 +04:00
|
|
|
|
using TravelCompanyContracts.SearchModels;
|
|
|
|
|
using TravelCompanyContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace TravelCompanyContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IClientLogic
|
|
|
|
|
{
|
|
|
|
|
List<ClientViewModel>? ReadList(ClientSearchModel? model);
|
|
|
|
|
ClientViewModel? ReadElement(ClientSearchModel model);
|
|
|
|
|
bool Create(ClientBindingModel model);
|
|
|
|
|
bool Update(ClientBindingModel model);
|
|
|
|
|
bool Delete(ClientBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|