2024-05-19 18:43:00 +04:00
|
|
|
|
using ElectronicsShopContracts.BindingModels;
|
|
|
|
|
using ElectronicsShopContracts.BusinessLogicContracts;
|
|
|
|
|
using ElectronicsShopContracts.SearchModels;
|
|
|
|
|
using ElectronicsShopContracts.StorageContracts;
|
|
|
|
|
using ElectronicsShopContracts.ViewModels;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopBusinessLogic.BusinessLogic
|
|
|
|
|
{
|
2024-05-22 23:00:35 +04:00
|
|
|
|
public class PayLogic : IPaymentLogic
|
2024-05-19 18:43:00 +04:00
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2024-05-22 23:00:35 +04:00
|
|
|
|
private readonly IPaymentStorage _storage;
|
2024-05-19 18:43:00 +04:00
|
|
|
|
|
2024-05-22 23:00:35 +04:00
|
|
|
|
public bool CreatePay(PaymentBindingModel model)
|
2024-05-19 18:43:00 +04:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-22 23:00:35 +04:00
|
|
|
|
public PaymentViewModel? ReadElement(PaymentSearchModel model)
|
2024-05-19 18:43:00 +04:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-22 23:00:35 +04:00
|
|
|
|
public List<PaymentViewModel>? ReadList(PaymentSearchModel? model)
|
2024-05-19 18:43:00 +04:00
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|