2024-04-30 01:41:35 +03:00
|
|
|
|
using ServiceStationContracts.BindingModels;
|
|
|
|
|
using ServiceStationContracts.SearchModels;
|
|
|
|
|
using ServiceStationContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IExecutorLogic
|
|
|
|
|
{
|
2024-08-10 18:43:15 +04:00
|
|
|
|
List<ExecutorViewModel>? ReadList(ExecutorSearchModel models);
|
2024-04-30 20:47:38 +03:00
|
|
|
|
ExecutorViewModel? ReadElement(ExecutorSearchModel model);
|
2024-08-10 18:43:15 +04:00
|
|
|
|
|
2024-04-30 01:41:35 +03:00
|
|
|
|
bool Create(ExecutorBindingModel model);
|
|
|
|
|
bool Update(ExecutorBindingModel model);
|
|
|
|
|
bool Delete(ExecutorBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|