Gismatullin.ISEbd-21.STO.Co.../ServiceStation/ServiceStationBusinessLogic/BusinessLogic/ClientLogic.cs
2024-08-27 16:29:09 +04:00

94 lines
2.6 KiB
C#

using Microsoft.Extensions.Logging;
using ServiceStationContracts.BindingModels;
using ServiceStationContracts.BusinessLogic;
using ServiceStationContracts.SearchModels;
using ServiceStationContracts.ViewModels;
using ServiceStationContracts.StorageContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
namespace ServiceStationBusinessLogic.BusinessLogic {
public class ClientLogic : IClientLogic {
private readonly ILogger _logger;
private readonly IClientStorage _storage;
public ClientLogic(ILogger<IClientLogic> logger, IClientStorage storage) {
_logger = logger;
_storage = storage;
}
public bool Create(ClientBindingModel model) {
CheckModel(model);
if (_storage.Insert(model) == null) {
_logger.LogWarning("Insert operation failed");
return false;
}
return true;
}
public bool Delete(ClientBindingModel model) {
CheckModel(model, false);
_logger.LogInformation($"Delete.Id:{model.Id}");
if (_storage.Delete(model) == null) {
_logger.LogWarning("Delete operation failed");
return false;
}
return true;
}
public bool Update(ClientBindingModel model) {
CheckModel(model);
if (_storage.Update(model) == null) {
_logger.LogWarning("Update operation failed");
return false;
}
return true;
}
public ClientViewModel? ReadElement(ClientSearchModel model) {
if (model == null) {
throw new ArgumentNullException(nameof(model));
}
_logger.LogInformation($"ReadElement.Id:{model.Id}.login:{model.fio}");
var element = _storage.GetElement(model);
if (element == null) {
_logger.LogWarning("ReadElement.Element not fount");
return null;
}
_logger.LogInformation($"ReadElement.find.Id:{element.Id}");
return element;
}
public List<ClientViewModel>? ReadList() {
var list = _storage.GetFullList();
if (list == null) {
_logger.LogWarning("ReadList return null list");
return null;
}
_logger.LogInformation($"ReadList.Count:{list.Count}");
return list;
}
private void CheckModel(ClientBindingModel model, bool withParams = true) {
if (string.IsNullOrEmpty((model.Id).ToString())) {
throw new ArgumentNullException("Нет Id клиента", nameof(model.Id));
}
if (!withParams) {
return;
}
if (string.IsNullOrEmpty(model.FIO)) {
throw new ArgumentNullException("Нет ФИО клиента", nameof(model.FIO));
}
_logger.LogInformation($"Client.Id:{model.Id}.FIO:{model.FIO}");
}
}
}