21 lines
694 B
C#
21 lines
694 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using AbstractSofrwareInstallationContracts.BindingModels;
|
|||
|
using AbstractSofrwareInstallationContracts.SearchModels;
|
|||
|
using AbstractSofrwareInstallationContracts.ViewModels;
|
|||
|
|
|||
|
namespace AbstractSofrwareInstallationContracts.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);
|
|||
|
}
|
|||
|
}
|