SUBD/Forum/ForumDatabase/Implements/RoleStorage.cs

46 lines
1.1 KiB
C#

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<RoleViewModel> GetFilteredList(RoleSearchModel model)
{
throw new NotImplementedException();
}
public List<RoleViewModel> GetFullList()
{
throw new NotImplementedException();
}
public RoleViewModel? Insert(RoleBindingModel model)
{
throw new NotImplementedException();
}
public RoleViewModel? Update(RoleBindingModel model)
{
throw new NotImplementedException();
}
}
}