ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/BusinessLogicsContracts/IComponentLogic.cs
Максим Куклев a415a05259 загрузил
2024-05-12 14:38:32 +04:00

19 lines
565 B
C#

using SoftwareInstallationContracts.BindingModels;
using SoftwareInstallationContracts.SearchModels;
using SoftwareInstallationContracts.ViewModels;
namespace SoftwareInstallationContracts.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);
}
}