2023-02-16 08:52:03 +04:00
|
|
|
|
using PizzeriaContracts.BindingModels;
|
|
|
|
|
using PizzeriaContracts.SearchModels;
|
|
|
|
|
using PizzeriaContracts.ViewModels;
|
2023-02-12 20:11:02 +04:00
|
|
|
|
|
2023-02-16 08:52:03 +04:00
|
|
|
|
namespace PizzeriaContracts.BusinessLogicsContracts
|
2023-02-12 20:11:02 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IComponentLogic
|
|
|
|
|
{
|
|
|
|
|
List<ComponentViewModel>? ReadList(ComponentSearchModel? model);
|
|
|
|
|
ComponentViewModel? ReadElement(ComponentSearchModel model);
|
|
|
|
|
bool Create(ComponentBindingModel model);
|
|
|
|
|
bool Update(ComponentBindingModel model);
|
|
|
|
|
bool Delete(ComponentBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|