15 lines
537 B
C#
15 lines
537 B
C#
|
using DeviceContracts.BindingModels;
|
|||
|
using DeviceContracts.SearchModels;
|
|||
|
using DeviceContracts.ViewModels;
|
|||
|
namespace DeviceContracts.StoragesContracts
|
|||
|
{
|
|||
|
public interface IKindStorage
|
|||
|
{
|
|||
|
List<KindViewModel> GetFullList();
|
|||
|
List<KindViewModel> GetFilteredList(KindSearchModel model);
|
|||
|
KindViewModel? GetElement(KindSearchModel model);
|
|||
|
KindViewModel? Insert(KindBindingModel model);
|
|||
|
KindViewModel? Update(KindBindingModel model);
|
|||
|
KindViewModel? Delete(KindBindingModel model);
|
|||
|
}
|
|||
|
}
|