20 lines
582 B
C#
Raw Normal View History

using SofrwareInstallationContracts.BindingModels;
using SofrwareInstallationContracts.ViewModels;
using SofrwareInstallationContracts.SearchModels;
namespace SofrwareInstallationContracts.BusinessLogicsContracts
{
public interface IImplementerLogic
{
List<ImplementerViewModel>? ReadList(ImplementerSearchModel? model);
ImplementerViewModel? ReadElement(ImplementerSearchModel model);
bool Create(ImplementerBindingModel model);
bool Update(ImplementerBindingModel model);
bool Delete(ImplementerBindingModel model);
}
}