ISEbd-22_Nikolaeva_Y.A._Sof.../SoftwareInstallation/SofrwareInstallationContracts/BusinessLogicsContracts/IComponentLogic.cs

16 lines
562 B
C#
Raw Normal View History

2023-03-14 15:20:02 +04:00
using SofrwareInstallationContracts.BindingModels;
using SofrwareInstallationContracts.SearchModels;
using SofrwareInstallationContracts.ViewModels;
namespace SofrwareInstallationContracts.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);
}
}