using BankYouBankruptContracts.BindingModels; using BankYouBankruptContracts.SearchModels; using BankYouBankruptContracts.StoragesContracts; using BankYouBankruptContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BankYouBankruptDatabaseImplement.Implements { public class AccountStorage : IAccountStorage { public List GetFullList() { throw new NotImplementedException(); } public List GetFilteredList(AccountSearchModel model) { throw new NotImplementedException(); } public AccountViewModel? GetElement(AccountSearchModel model) { throw new NotImplementedException(); } public AccountViewModel? Insert(AccountBindingModel model) { throw new NotImplementedException(); } public AccountViewModel? Update(AccountBindingModel model) { throw new NotImplementedException(); } public AccountViewModel? Delete(AccountBindingModel model) { throw new NotImplementedException(); } } }