2024-04-28 21:34:43 +04:00
|
|
|
|
using BankContracts.BindingModels;
|
|
|
|
|
using BankContracts.SearchModels;
|
|
|
|
|
using BankContracts.ViewModels;
|
2024-04-28 20:20:37 +04:00
|
|
|
|
|
|
|
|
|
namespace BankContracts.StoragesContracts
|
|
|
|
|
{
|
2024-04-28 21:34:43 +04:00
|
|
|
|
public interface IPaymentStorage
|
2024-04-28 20:20:37 +04:00
|
|
|
|
{
|
2024-04-28 21:34:43 +04:00
|
|
|
|
List<PaymentViewModel> GetFullList();
|
|
|
|
|
List<PaymentViewModel> GetFilteredList(PaymentSearchModel model);
|
|
|
|
|
PaymentViewModel? GetElement(PaymentSearchModel model);
|
|
|
|
|
PaymentViewModel? Insert(PaymentBindingModel model);
|
2024-04-28 20:20:37 +04:00
|
|
|
|
}
|
2024-04-28 21:34:43 +04:00
|
|
|
|
}
|