PIbd-23_Zargarov_M.A._Cours.../CarCenter/CarCenterBusinessLogic/BusinessLogics/PresaleLogic.cs

111 lines
3.6 KiB
C#

using CarCenterContracts.BindingModels;
using CarCenterContracts.BusinessLogicsContracts;
using CarCenterContracts.SearchModels;
using CarCenterContracts.StoragesContracts;
using CarCenterContracts.ViewModels;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterusinessLogic.BusinessLogics
{
public class PresaleLogic : IPresaleLogic
{
private readonly ILogger _logger;
private readonly IPresaleStorage _PresaleStorage;
public PresaleLogic(ILogger<PresaleLogic> logger, IPresaleStorage PresaleStorage)
{
_logger = logger;
_PresaleStorage = PresaleStorage;
}
public List<PresaleViewModel>? ReadList(PresaleSearchModel? model)
{
_logger.LogInformation("ReadList. Id:{Id}", model?.Id);
var list = model == null ? _PresaleStorage.GetFullList() : _PresaleStorage.GetFilteredList(model);
if (list == null)
{
_logger.LogWarning("ReadList return null list");
return null;
}
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
return list;
}
public PresaleViewModel? ReadElement(PresaleSearchModel model)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
_logger.LogInformation("ReadElement. Id:{Id}", model.Id);
var element = _PresaleStorage.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(PresaleBindingModel model)
{
CheckModel(model);
if (_PresaleStorage.Insert(model) == null)
{
_logger.LogWarning("Insert operation failed");
return false;
}
return true;
}
public bool Update(PresaleBindingModel model)
{
CheckModel(model);
if (_PresaleStorage.Update(model) == null)
{
_logger.LogWarning("Update operation failed");
return false;
}
return true;
}
public bool Delete(PresaleBindingModel model)
{
CheckModel(model, false);
_logger.LogInformation("Delete. Id:{Id}", model.Id);
if (_PresaleStorage.Delete(model) == null)
{
_logger.LogWarning("Delete operation failed");
return false;
}
return true;
}
private void CheckModel(PresaleBindingModel model, bool withParams = true)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
if (!withParams)
{
return;
}
if (model.TypeOfJobId < 0)
{
throw new InvalidOperationException("Неверный ID вида работы");
}
if (model.EmployeeId < 0)
{
throw new InvalidOperationException("Неверный ID сотрудника");
}
_logger.LogInformation("Presale. PresaleDate:{PresaleDate}. TypeOfJobId:{TypeOfJobId}. EmployeeId:{EmployeeId}. Id:{Id}", model.PresaleDate, model.TypeOfJobId, model.EmployeeId, model.Id);
}
}
}