15 lines
549 B
C#
15 lines
549 B
C#
|
using DeviceContracts.BindingModels;
|
|||
|
using DeviceContracts.SearchModels;
|
|||
|
using DeviceContracts.ViewModels;
|
|||
|
namespace DeviceContracts.StoragesContracts
|
|||
|
{
|
|||
|
public interface IStaffStorage
|
|||
|
{
|
|||
|
List<StaffViewModel> GetFullList();
|
|||
|
List<StaffViewModel> GetFilteredList(StaffSearchModel model);
|
|||
|
StaffViewModel? GetElement(StaffSearchModel model);
|
|||
|
StaffViewModel? Insert(StaffBindingModel model);
|
|||
|
StaffViewModel? Update(StaffBindingModel model);
|
|||
|
StaffViewModel? Delete(StaffBindingModel model);
|
|||
|
}
|
|||
|
}
|