14 lines
464 B
C#
14 lines
464 B
C#
using DeviceContracts.BindingModels;
|
|
using DeviceContracts.SearchModels;
|
|
using DeviceContracts.ViewModels;
|
|
namespace DeviceContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IKindLogic
|
|
{
|
|
List<KindViewModel>? ReadList(KindSearchModel? model);
|
|
KindViewModel? ReadElement(KindSearchModel model);
|
|
bool Create(KindBindingModel model);
|
|
bool Update(KindBindingModel model);
|
|
bool Delete(KindBindingModel model);
|
|
}
|
|
} |