14 lines
456 B
C#
14 lines
456 B
C#
using DeviceContracts.BindingModels;
|
|
using DeviceContracts.SearchModels;
|
|
using DeviceContracts.ViewModels;
|
|
namespace DeviceContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IKitLogic
|
|
{
|
|
List<KitViewModel>? ReadList(KitSearchModel? model);
|
|
KitViewModel? ReadElement(KitSearchModel model);
|
|
bool Create(KitBindingModel model);
|
|
bool Update(KitBindingModel model);
|
|
bool Delete(KitBindingModel model);
|
|
}
|
|
} |