using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using LawFirmContracts.BindingModels; using LawFirmContracts.SearchModels; using LawFirmContracts.ViewModels; namespace LawFirmContracts.StorageContracts { 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); } }