2024-04-07 16:54:02 +04:00
|
|
|
|
using SoftwareInstallationContracts.BindingModels;
|
|
|
|
|
using SoftwareInstallationContracts.SearchModels;
|
|
|
|
|
using SoftwareInstallationContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace SoftwareInstallationContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IComponentLogic
|
|
|
|
|
{
|
|
|
|
|
List<ComponentViewModel>? ReadList(ComponentSearchModel? model);
|
2024-05-12 14:38:32 +04:00
|
|
|
|
|
2024-04-07 16:54:02 +04:00
|
|
|
|
ComponentViewModel? ReadElement(ComponentSearchModel model);
|
2024-05-12 14:38:32 +04:00
|
|
|
|
|
2024-04-07 16:54:02 +04:00
|
|
|
|
bool Create(ComponentBindingModel model);
|
2024-05-12 14:38:32 +04:00
|
|
|
|
|
2024-04-07 16:54:02 +04:00
|
|
|
|
bool Update(ComponentBindingModel model);
|
2024-05-12 14:38:32 +04:00
|
|
|
|
|
2024-04-07 16:54:02 +04:00
|
|
|
|
bool Delete(ComponentBindingModel model);
|
|
|
|
|
}
|
2024-05-12 14:38:32 +04:00
|
|
|
|
}
|