2024-04-30 01:41:35 +03:00
|
|
|
|
using ServiceStationContracts.BindingModels;
|
|
|
|
|
using ServiceStationContracts.SearchModels;
|
|
|
|
|
using ServiceStationContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IClientLogic
|
|
|
|
|
{
|
2024-08-12 17:52:19 +04:00
|
|
|
|
List<ClientViewModel>? ReadList();
|
2024-04-30 20:47:38 +03:00
|
|
|
|
ClientViewModel? ReadElement(ClientSearchModel model);
|
2024-08-10 18:43:15 +04:00
|
|
|
|
|
2024-04-30 01:41:35 +03:00
|
|
|
|
bool Create(ClientBindingModel model);
|
|
|
|
|
bool Update(ClientBindingModel model);
|
|
|
|
|
bool Delete(ClientBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|