2024-04-28 20:59:10 +04:00
|
|
|
|
using ElectronicsShopContracts.BindingModels;
|
|
|
|
|
using ElectronicsShopContracts.SearchModels;
|
|
|
|
|
using ElectronicsShopContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopContracts.StorageContracts
|
|
|
|
|
{
|
|
|
|
|
public interface IRoleStorage
|
|
|
|
|
{
|
|
|
|
|
List<RoleViewModel> GetFullList();
|
2024-04-28 23:08:09 +04:00
|
|
|
|
List<RoleViewModel> GetFilteredList(RoleSearchModel model);
|
|
|
|
|
RoleViewModel? GetElement(RoleSearchModel model);
|
|
|
|
|
RoleViewModel? Insert(RoleBindingModel model);
|
|
|
|
|
RoleViewModel? Update(RoleBindingModel model);
|
|
|
|
|
RoleViewModel? Delete(RoleBindingModel model);
|
2024-04-28 20:59:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|