120 lines
4.2 KiB
C#
120 lines
4.2 KiB
C#
|
using ComputerShopContracts.BindingModels;
|
|||
|
using ComputerShopContracts.BusinessLogicContracts;
|
|||
|
using ComputerShopContracts.SearchModels;
|
|||
|
using ComputerShopContracts.StorageContracts;
|
|||
|
using ComputerShopContracts.ViewModels;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ComputerShopBusinessLogic.BusinessLogics
|
|||
|
{
|
|||
|
public class AssemblyLogic : IAssemblyLogic
|
|||
|
{
|
|||
|
private readonly ILogger _logger;
|
|||
|
private readonly IAssemblyStorage _assemblyStorage;
|
|||
|
|
|||
|
public AssemblyLogic(ILogger<AssemblyLogic> logger, IAssemblyStorage assemblyStorage)
|
|||
|
{
|
|||
|
_logger = logger;
|
|||
|
_assemblyStorage = assemblyStorage;
|
|||
|
}
|
|||
|
|
|||
|
public bool Create(AssemblyBindingModel model)
|
|||
|
{
|
|||
|
CheckModel(model);
|
|||
|
if (_assemblyStorage.Insert(model) == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("Insert operation failed");
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
public bool Delete(AssemblyBindingModel model)
|
|||
|
{
|
|||
|
CheckModel(model, false);
|
|||
|
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
|||
|
if (_assemblyStorage.Delete(model) == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("Delete operation failed");
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
public AssemblyViewModel? ReadElement(AssemblySearchModel model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
throw new ArgumentNullException(nameof(model));
|
|||
|
}
|
|||
|
_logger.LogInformation("ReadElement. AssemblyName:{AssemblyName}.Id:{ Id}", model.AssemblyName, model.Id);
|
|||
|
var element = _assemblyStorage.GetElement(model);
|
|||
|
if (element == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("ReadElement element not found");
|
|||
|
return null;
|
|||
|
}
|
|||
|
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
|
|||
|
return element;
|
|||
|
}
|
|||
|
|
|||
|
public List<AssemblyViewModel>? ReadList(AssemblySearchModel? model)
|
|||
|
{
|
|||
|
_logger.LogInformation("ReadList. AssemblyName:{AssemblyName}.Id:{ Id}", model?.AssemblyName, model?.Id);
|
|||
|
var list = model == null ? _assemblyStorage.GetFullList() : _assemblyStorage.GetFilteredList(model);
|
|||
|
if (list == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("ReadList return null list");
|
|||
|
return null;
|
|||
|
}
|
|||
|
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
|||
|
return list;
|
|||
|
}
|
|||
|
|
|||
|
public bool Update(AssemblyBindingModel model)
|
|||
|
{
|
|||
|
CheckModel(model);
|
|||
|
if (_assemblyStorage.Update(model) == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("Update operation failed");
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
private void CheckModel(AssemblyBindingModel model, bool withParams = true)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
throw new ArgumentNullException(nameof(model));
|
|||
|
}
|
|||
|
if (!withParams)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
if (string.IsNullOrEmpty(model.AssemblyName))
|
|||
|
{
|
|||
|
throw new ArgumentNullException("Нет названия сборки", nameof(model.AssemblyName));
|
|||
|
}
|
|||
|
if (model.Price <= 0)
|
|||
|
{
|
|||
|
throw new ArgumentNullException("Стоимость сборки должна быть больше 0", nameof(model.Price));
|
|||
|
}
|
|||
|
_logger.LogInformation("Assembly. ComputerName:{AssemblyName}.Price:{ Price}. Id: { Id}", model.AssemblyName, model.Price, model.Id);
|
|||
|
var element = _assemblyStorage.GetElement(new AssemblySearchModel
|
|||
|
{
|
|||
|
AssemblyName = model.AssemblyName
|
|||
|
});
|
|||
|
if (element != null && element.Id != model.Id)
|
|||
|
{
|
|||
|
throw new InvalidOperationException("Сборка с таким названием уже есть");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|