27 lines
713 B
C#

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<PaymentViewModel> GetFullList();
List<PaymentViewModel> GetFilteredList(PaymentBindingModel model);
PaymentViewModel GetElement(PaymentBindingModel model);
void Insert(PaymentBindingModel model);
void Update(PaymentBindingModel model);
PaymentViewModel GetElementFirstLast(PaymentDateBindingModel model);
void Delete(PaymentBindingModel model);
}
}