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 MessageStorage : IMessageStorage { public MessageViewModel? Delete(MessageBindingModel model) { throw new NotImplementedException(); } public MessageViewModel? GetElement(MessageSearchModel model) { throw new NotImplementedException(); } public List GetFilteredList(MessageSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public MessageViewModel? Insert(MessageBindingModel model) { throw new NotImplementedException(); } public MessageViewModel? Update(MessageBindingModel model) { throw new NotImplementedException(); } } }