SUBD/Forum/ForumDatabase/Implements/TopicStorage.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 TopicStorage : ITopicStorage
{
public TopicViewModel? Delete(TopicBindingModel model)
{
throw new NotImplementedException();
}
public TopicViewModel? GetElement(TopicSearchModel model)
{
throw new NotImplementedException();
}
public List<TopicViewModel> GetFilteredList(TopicSearchModel model)
{
throw new NotImplementedException();
}
public List<TopicViewModel> GetFullList()
{
throw new NotImplementedException();
}
public TopicViewModel? Insert(TopicBindingModel model)
{
throw new NotImplementedException();
}
public TopicViewModel? Update(TopicBindingModel model)
{
throw new NotImplementedException();
}
}
}