2023-01-31 13:10:23 +04:00
|
|
|
|
using SofrwareInstallationContracts.BindingModels;
|
2023-01-30 14:48:39 +04:00
|
|
|
|
using SofrwareInstallationContracts.SearchModels;
|
|
|
|
|
using SofrwareInstallationContracts.ViewModels;
|
2023-01-29 22:45:01 +04:00
|
|
|
|
|
2023-01-30 14:48:39 +04:00
|
|
|
|
namespace SofrwareInstallationContracts.BusinessLogicsContracts
|
2023-01-29 22:45:01 +04:00
|
|
|
|
{
|
|
|
|
|
public interface IComponentLogic
|
|
|
|
|
{
|
|
|
|
|
List<ComponentViewModel>? ReadList(ComponentSearchModel? model);
|
|
|
|
|
ComponentViewModel? ReadElement(ComponentSearchModel model);
|
|
|
|
|
bool Create(ComponentBindingModel model);
|
|
|
|
|
bool Update(ComponentBindingModel model);
|
|
|
|
|
bool Delete(ComponentBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|