using ComputersShopContracts.BindingModels; using ComputersShopContracts.BusinessLogicsContracts; using ComputersShopContracts.SearchModels; using ComputersShopContracts.StoragesContracts; using ComputersShopContracts.ViewModels; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ComputersShopBusinessLogic.BusinessLogics { public class ImplementerLogic: IImplementerLogic { private readonly ILogger _logger; private readonly IImplementerStorage _implementerStorage; public ImplementerLogic(ILogger logger, IImplementerStorage implementerStorage) { _logger = logger; _implementerStorage = implementerStorage; } public List? ReadList(ImplementerSearchModel? model) { _logger.LogInformation("ReadList. ImplementerFIO:{ImplementerFIO}. Id:{Id}", model?.ImplementerFIO, model?.Id); var list = model == null ? _implementerStorage.GetFullList() : _implementerStorage.GetFiltredList(model); if (list == null) { _logger.LogWarning("ReadList return null list"); return null; } _logger.LogInformation("ReadList. Count:{Count}", list.Count); return list; } public ImplementerViewModel? ReadElement(ImplementerSearchModel model) { if (model == null) { throw new ArgumentNullException(nameof(model)); } _logger.LogInformation("ReadList. ImplementerFIO:{ImplementerFIO}. Id:{Id}", model?.ImplementerFIO, model?.Id); var element = _implementerStorage.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(ImplementerBindingModel model) { CheckModel(model); if (_implementerStorage.Insert(model) == null) { _logger.LogWarning("Insert operation failed"); return false; } return true; } public bool Update(ImplementerBindingModel model) { CheckModel(model); if (_implementerStorage.Update(model) == null) { _logger.LogWarning("Update operation failed"); return false; } return true; } public bool Delete(ImplementerBindingModel model) { CheckModel(model, false); _logger.LogInformation("Delete. Id:{Id}", model.Id); if (_implementerStorage.Delete(model) == null) { _logger.LogWarning("Delete operation failed"); return false; } return true; } private void CheckModel(ImplementerBindingModel model, bool withParams = true) { if (model == null) { throw new ArgumentNullException(nameof(model)); } if (!withParams) { return; } if (string.IsNullOrEmpty(model.ImplementerFIO)) { throw new ArgumentNullException("Нет ФИО исполнителя", nameof(model.ImplementerFIO)); } if (string.IsNullOrEmpty(model.Password)) { throw new ArgumentNullException("Нет пароля", nameof(model.Password)); } if (model.Qualification < 0) { throw new ArgumentNullException("Квалификация меньше нуля", nameof(model.Qualification)); } if (model.WorkExperience < 0) { throw new ArgumentNullException("Стаж работы меньше нуля", nameof(model.WorkExperience)); } _logger.LogInformation("Client. Id:{Id}. FIO:{ImplementerFIO}. Password:{Password}. WorkExperience:{WorkExperience}. " + "Qualification:{Qualification}", model.Id, model.ImplementerFIO, model.Password, model.WorkExperience, model.Qualification); var element = _implementerStorage.GetElement(new ImplementerSearchModel { ImplementerFIO = model.ImplementerFIO }); if (element != null && element.Id != model.Id) { throw new InvalidOperationException("Исполнитель с таким ФИО уже есть"); } } } }