17 lines
515 B
C#
17 lines
515 B
C#
using SushiBarContracts.BindingModels;
|
|
using SushiBarContracts.SearchModels;
|
|
using SushiBarContracts.ViewModels;
|
|
|
|
namespace SushiBarContracts.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);
|
|
|
|
}
|
|
}
|