PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/BusinessLogicsContracts/IComponentLogic.cs

15 lines
533 B
C#
Raw Permalink Normal View History

2024-03-13 14:54:56 +04:00
using ConfectioneryContracts.BindingModels;
using ConfectioneryContracts.SearchModels;
using ConfectioneryContracts.ViewModels;
namespace ConfectioneryContracts.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);
}
}