2023-04-01 21:58:37 +04:00
|
|
|
|
using CarServiceContracts.BindingModels;
|
|
|
|
|
using CarServiceContracts.SearchModels;
|
|
|
|
|
using CarServiceContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace CarServiceContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IItemForRepairLogic
|
|
|
|
|
{
|
|
|
|
|
List<ItemForRepairViewModel>? ReadList(ItemForRepairSearchModel? model);
|
2023-04-01 22:41:11 +04:00
|
|
|
|
ItemForRepairViewModel? ReadElement(ItemForRepairSearchModel model);
|
2023-04-01 21:58:37 +04:00
|
|
|
|
bool Create(ItemForRepairBindingModel model);
|
|
|
|
|
bool Update(ItemForRepairBindingModel model);
|
|
|
|
|
bool Delete(ItemForRepairBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|