using BankContracts.BindingModels; using BankContracts.SearchModels; using BankContracts.ViewModels; namespace BankContracts.StoragesContracts { public interface IPaymentStorage { List GetFullList(); List GetFilteredList(PaymentSearchModel model); PaymentViewModel? GetElement(PaymentSearchModel model); PaymentViewModel? Insert(PaymentBindingModel model); } }