71 lines
2.4 KiB
C#
71 lines
2.4 KiB
C#
|
using Microsoft.Extensions.Logging;
|
|||
|
using SushiBarContracts.BindingModel;
|
|||
|
using SushiBarContracts.BusinessLogicsContracts;
|
|||
|
using SushiBarContracts.SearchModel;
|
|||
|
using SushiBarContracts.StoragesContracts;
|
|||
|
using SushiBarContracts.ViewModels;
|
|||
|
using SushiBarDataModels;
|
|||
|
|
|||
|
namespace SushiBarBusinessLogic
|
|||
|
{
|
|||
|
public class ShopLogic : IShopLogic
|
|||
|
{
|
|||
|
private readonly ILogger _logger;
|
|||
|
private readonly IShopStorage _shopStorage;
|
|||
|
|
|||
|
public ShopLogic(ILogger logger, IShopStorage shopStorage)
|
|||
|
{
|
|||
|
_logger = logger;
|
|||
|
_shopStorage = shopStorage;
|
|||
|
}
|
|||
|
|
|||
|
public List<ShopViewModel>? ReadList(ShopSearchModel? model)
|
|||
|
{
|
|||
|
_logger.LogInformation("ReadList. Id:{ Id}, ShopName:{ ShopName}", model?.Id, model?.Name);
|
|||
|
var list = model == null ? _shopStorage.GetFullList() : _shopStorage.GetFilteredList(model);
|
|||
|
if (list == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("ReadList return null list");
|
|||
|
return null;
|
|||
|
}
|
|||
|
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
|||
|
return list;
|
|||
|
}
|
|||
|
|
|||
|
public ShopViewModel? ReadElement(ShopSearchModel model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
throw new ArgumentNullException(nameof(model));
|
|||
|
}
|
|||
|
_logger.LogInformation("ReadList. Id:{ Id}, ShopName:{ ShopName}", model.Id, model.Name);
|
|||
|
var element = _shopStorage.GetElement(model);
|
|||
|
if (element == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("ReadElement element not found");
|
|||
|
return null;
|
|||
|
}
|
|||
|
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
|
|||
|
return element;
|
|||
|
}
|
|||
|
|
|||
|
public bool Create(ShopBindingModel model)
|
|||
|
{
|
|||
|
CheckModel(model);
|
|||
|
}
|
|||
|
|
|||
|
private bool CheckModel(ShopBindingModel model, bool withParams = true)
|
|||
|
{
|
|||
|
if(model == null)
|
|||
|
throw new ArgumentNullException($"{nameof(model)} is null");
|
|||
|
if (!withParams) return false;
|
|||
|
if (string.IsNullOrEmpty(model.Name))
|
|||
|
{
|
|||
|
throw new ArgumentNullException("Нет такого магазина", nameof(model.Name));
|
|||
|
}
|
|||
|
_logger.LogInformation("Shop. ShopName:{ShopName}.Address:{ Address}. Id:{ Id}",
|
|||
|
model.ShopName, model.Address, model.Id);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|