ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/BusinessLogicsContracts/IPackageLogic.cs
Максим Куклев 97b9443a66 загрузил
2024-04-07 16:54:02 +04:00

21 lines
662 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 IPackageLogic
{
List<PackageViewModel>? ReadList(PackageSearchModel? model);
PackageViewModel? ReadElement(PackageSearchModel model);
bool Create(PackageBindingModel model);
bool Update(PackageBindingModel model);
bool Delete(PackageBindingModel model);
}
}