PIbd-21_Anisin_R.S._CarRepa.../CarRepairShop/CarRepairShopContracts/BusinessLogicsContracts/IComponentLogic.cs

19 lines
537 B
C#
Raw Normal View History

2024-03-23 14:18:27 +04:00
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);
}
}