16 lines
396 B
C#
16 lines
396 B
C#
using Contracts.BindingModels;
|
|
using Contracts.SearchModels;
|
|
using Contracts.ViewModels;
|
|
|
|
namespace Contracts.BusinessLogicsContracts
|
|
{
|
|
public interface IKeyLogic
|
|
{
|
|
List<KeyViewModel>? ReadList(KeySearchModel? model);
|
|
KeyViewModel? ReadElement(KeySearchModel? model);
|
|
bool Create(KeyBindingModel model);
|
|
bool Update(KeyBindingModel model);
|
|
bool Delete(KeyBindingModel model);
|
|
}
|
|
}
|