16 lines
514 B
C#
Raw Normal View History

2023-02-16 07:52:03 +03:00
using PizzeriaContracts.BindingModels;
using PizzeriaContracts.SearchModels;
using PizzeriaContracts.ViewModels;
2023-02-12 19:11:02 +03:00
2023-02-16 07:52:03 +03:00
namespace PizzeriaContracts.BusinessLogicsContracts
2023-02-12 19:11:02 +03: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);
}
}