Compare commits

..

No commits in common. "dddbba87daf356b4c561409b886e626742da1308" and "c5f4b3caf64fb1912a6fcd908c94a779c3537df8" have entirely different histories.

2 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View File

@ -398,4 +398,3 @@ FodyWeavers.xsd
# JetBrains Rider
*.sln.iml
/AutomobilePlant/ImplementationExtensions

View File

@ -84,7 +84,7 @@ namespace AutomobilePlantBusinessLogic.BusinessLogics
var car = _carStorage.GetElement(new CarSearchModel() { Id = model.CarId });
if (car == null)
{
_logger.LogWarning("Status update to " + newStatus.ToString() + " operation failed. Car not found.");
_logger.LogWarning("Status update to " + newStatus.ToString() + " operation failed. Document not found.");
return false;
}
if (CheckThenSupplyMany(car, model.Count) == false)