2023-04-07 10:55:40 +04:00
|
|
|
|
using CanteenContracts.BindingModels;
|
|
|
|
|
using CanteenContracts.SearchModel;
|
|
|
|
|
using CanteenContracts.View;
|
|
|
|
|
using System;
|
2023-04-06 14:34:58 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CanteenContracts.StoragesContracts
|
|
|
|
|
{
|
2023-04-07 10:55:40 +04:00
|
|
|
|
public interface IRoleStorage
|
2023-04-06 14:34:58 +04:00
|
|
|
|
{
|
2023-04-07 10:55:40 +04:00
|
|
|
|
List<RoleViewModel> GetFullList();
|
|
|
|
|
List<RoleViewModel> GetFilteredList(RoleSearchModel model);
|
|
|
|
|
RoleViewModel? GetElement(RoleSearchModel model);
|
|
|
|
|
RoleViewModel? Insert(RoleBindingModel model);
|
|
|
|
|
RoleViewModel? Update(RoleBindingModel model);
|
|
|
|
|
RoleViewModel? Delete(RoleBindingModel model);
|
2023-04-06 14:34:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|