using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using VetClinicBusinessLogic.BindingModels; using VetClinicBusinessLogic.ViewModels; namespace VetClinicBusinessLogic.Interfaces { public interface IPaymentStorage { List GetFullList(); List GetFilteredList(PaymentBindingModel model); PaymentViewModel GetElement(PaymentBindingModel model); void Insert(PaymentBindingModel model); void Update(PaymentBindingModel model); PaymentViewModel GetElementFirstLast(PaymentDateBindingModel model); void Delete(PaymentBindingModel model); } }