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 UserStorage : IUserStorage { public UserViewModel? Delete(UserBindingModel model) { throw new NotImplementedException(); } public UserViewModel? GetElement(UserSearchModel model) { throw new NotImplementedException(); } public List GetFilteredList(UserSearchModel model) { throw new NotImplementedException(); } public List GetFullList() { throw new NotImplementedException(); } public UserViewModel? Insert(UserBindingModel model) { throw new NotImplementedException(); } public UserViewModel? Update(UserBindingModel model) { throw new NotImplementedException(); } } }