PIbd-22_Kaznacheeva.E.K._So.../SoftwareInstallation/SoftwareInstallationContracts/BusinessLogicsContracts/IComponentLogic.cs
2024-02-27 23:44:38 +04:00

21 lines
700 B
C#

using SoftwareInstallationContracts.BindingModels;
using SoftwareInstallationContracts.SearchModels;
using SoftwareInstallationContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationContracts.BusinessLogicsContracts
{
public interface IComponentLogic
{
List<ViewModels.ComponentViewModel>? ReadList(ComponentSearchModel? model);
ViewModels.ComponentViewModel? ReadElement(ComponentSearchModel model);
bool Create(ComponentBindingModel model);
bool Update(ComponentBindingModel model);
bool Delete(ComponentBindingModel model);
}
}