using BankContracts.BindingModels.Client; using BankContracts.SearchModels.Client; using BankContracts.ViewModels.Client.ViewModels; namespace BankContracts.StoragesContracts.Client { public interface ICardStorage { List GetFullList(); List GetFilteredList(CardSearchModel model); CardViewModel? GetElement(CardSearchModel model); CardViewModel? Insert(CardBindingModel model); CardViewModel? Update(CardBindingModel model); CardViewModel? Delete(CardBindingModel model); } }