using BankContracts.BindingModels; using BankContracts.SearchModels; using BankContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BankContracts.StoragesContracts { public interface IPaymentStorage { List GetFullList(); List GetFilteredList(PaymentSearchModel model); PaymentViewModel? GetElement(PaymentSearchModel model); PaymentViewModel? Insert(PaymentBindingModel model); PaymentViewModel? Update(PaymentBindingModel model); PaymentViewModel? Delete(PaymentBindingModel model); } }