using ForumContracts.BindingModels; using ForumContracts.SearchModels; using ForumContracts.StoragesContracts; using ForumContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ForumDatabase.Implements { public class RoleStorage : IRoleStorage { public RoleViewModel? Delete(RoleBindingModel model) { throw new NotImplementedException(); } public RoleViewModel? GetElement(RoleSearchModel model) { throw new NotImplementedException(); } public List GetFilteredList(RoleSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public RoleViewModel? Insert(RoleBindingModel model) { throw new NotImplementedException(); } public RoleViewModel? Update(RoleBindingModel model) { throw new NotImplementedException(); } } }