114 lines
4.0 KiB
C#
Raw Normal View History

using AutomobilePlantContracts.BindingModels;
using AutomobilePlantContracts.BusinessLogicsContracts;
using AutomobilePlantContracts.SearchModel;
using AutomobilePlantContracts.StoragesContracts;
using AutomobilePlantContracts.ViewModel;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantBusinessLogic.BusinessLogics
{
2023-04-19 15:41:28 +03:00
public class CarLogic : ICarLogic
{
private readonly ILogger _logger;
2023-04-19 15:41:28 +03:00
private readonly ICarStorage _carStorage;
public CarLogic(ILogger<CarLogic> logger, ICarStorage carStorage)
{
_logger = logger;
2023-04-19 15:41:28 +03:00
_carStorage = carStorage;
}
2023-04-19 15:41:28 +03:00
public List<CarViewModel>? ReadList(CarSearchModel? model)
{
2023-04-19 15:41:28 +03:00
_logger.LogInformation("ReadList. CarName:{CarName}.Id:{ Id}", model?.CarName, model?.Id);
var list = model == null ? _carStorage.GetFullList() : _carStorage.GetFilteredList(model);
if (list == null)
{
_logger.LogWarning("ReadList return null list");
return null;
}
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
return list;
}
2023-04-19 15:41:28 +03:00
public CarViewModel? ReadElement(CarSearchModel model)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
2023-04-19 15:41:28 +03:00
_logger.LogInformation("ReadElement. CarName:{CarName}. Id:{ Id}", model.CarName, model.Id);
var element = _carStorage.GetElement(model);
if (element == null)
{
_logger.LogWarning("ReadElement element not found");
return null;
}
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
return element;
}
2023-04-19 15:41:28 +03:00
public bool Create(CarBindingModel model)
{
CheckModel(model);
2023-04-19 15:41:28 +03:00
if (_carStorage.Insert(model) == null)
{
_logger.LogWarning("Insert operation failed");
return false;
}
return true;
}
2023-04-19 15:41:28 +03:00
public bool Update(CarBindingModel model)
{
CheckModel(model);
2023-04-19 15:41:28 +03:00
if (_carStorage.Update(model) == null)
{
_logger.LogWarning("Update operation failed");
return false;
}
return true;
}
2023-04-19 15:41:28 +03:00
public bool Delete(CarBindingModel model)
{
CheckModel(model, false);
_logger.LogInformation("Delete. Id:{Id}", model.Id);
2023-04-19 15:41:28 +03:00
if (_carStorage.Delete(model) == null)
{
_logger.LogWarning("Delete operation failed");
return false;
}
return true;
}
2023-04-19 15:41:28 +03:00
private void CheckModel(CarBindingModel model, bool withParams =
true)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
if (!withParams)
{
return;
}
2023-04-19 15:41:28 +03:00
if (string.IsNullOrEmpty(model.CarName))
{
2023-04-19 15:41:28 +03:00
throw new ArgumentNullException("Нет названия изделия", nameof(model.CarName));
}
if (model.Price <= 0)
{
throw new ArgumentNullException("Цена изделия должна быть больше 0", nameof(model.Price));
}
2023-04-19 15:41:28 +03:00
_logger.LogInformation("Car. CarName:{CarName}.Cost:{ Cost}. Id: { Id}", model.CarName, model.Price, model.Id);
var element = _carStorage.GetElement(new CarSearchModel
{
2023-04-19 15:41:28 +03:00
CarName = model.CarName
});
if (element != null && element.Id != model.Id)
{
throw new InvalidOperationException("Изделие с таким названием уже есть");
}
}
}
}