CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptDatabaseImplement/Implements/AccountStorage.cs

44 lines
1.0 KiB
C#

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<AccountViewModel> GetFullList()
{
throw new NotImplementedException();
}
public List<AccountViewModel> 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();
}
}
}