ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/BusinessLogicsContracts/IPackageLogic.cs

19 lines
549 B
C#
Raw Normal View History

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