19 lines
537 B
C#
19 lines
537 B
C#
|
using CarRepairShopContracts.BindingModels;
|
|||
|
using CarRepairShopContracts.SearchModels;
|
|||
|
using CarRepairShopContracts.ViewModels;
|
|||
|
|
|||
|
namespace CarRepairShopContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IComponentLogic
|
|||
|
{
|
|||
|
List<ComponentViewModel>? ReadList(ComponentSearchModel? model);
|
|||
|
|
|||
|
ComponentViewModel? ReadElement(ComponentSearchModel model);
|
|||
|
|
|||
|
bool Create(ComponentBindingModel model);
|
|||
|
|
|||
|
bool Update(ComponentBindingModel model);
|
|||
|
|
|||
|
bool Delete(ComponentBindingModel model);
|
|||
|
}
|
|||
|
}
|