2024-04-30 17:44:37 +03:00
|
|
|
|
using ServiceStationContracts.BindingModels;
|
|
|
|
|
using ServiceStationContracts.SearchModels;
|
|
|
|
|
using ServiceStationContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ServiceStationsContracts.StorageContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IExecutorStorage
|
|
|
|
|
{
|
|
|
|
|
List<ExecutorViewModel> GetFullList();
|
|
|
|
|
ExecutorViewModel? GetElement(ExecutorSearchModel model);
|
2024-08-10 18:43:15 +04:00
|
|
|
|
|
2024-04-30 17:44:37 +03:00
|
|
|
|
ExecutorViewModel? Insert(ExecutorBindingModel model);
|
|
|
|
|
ExecutorViewModel? Update(ExecutorBindingModel model);
|
|
|
|
|
ExecutorViewModel? Delete(ExecutorBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|