32 lines
868 B
C#
32 lines
868 B
C#
|
using ElectronicsShopContracts.BindingModels;
|
|||
|
using ElectronicsShopContracts.BusinessLogicContracts;
|
|||
|
using ElectronicsShopContracts.SearchModels;
|
|||
|
using ElectronicsShopContracts.StorageContracts;
|
|||
|
using ElectronicsShopContracts.ViewModels;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
|
|||
|
|
|||
|
namespace ElectronicsShopBusinessLogic.BusinessLogic
|
|||
|
{
|
|||
|
public class PayLogic : IPayLogic
|
|||
|
{
|
|||
|
private readonly ILogger _logger;
|
|||
|
private readonly IPayStorage _storage;
|
|||
|
|
|||
|
public bool CreatePay(PayBindingModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public PayViewModel? ReadElement(PaySearchModel model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<PayViewModel>? ReadList(PaySearchModel? model)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|