conflict fix 1

This commit is contained in:
devil_1nc 2023-05-22 18:57:12 +04:00
parent 39ae477367
commit ac4044a126
3 changed files with 5 additions and 5 deletions

View File

@ -65,7 +65,7 @@ namespace AbstractSoftwareInstallationBusinessLogic.BusinessLogic
}
model.Status = OrderStatus.Принят;
model.DateCreate = DateTime.Now;
if (_orderStorage.Insert(model) == null)
if (_orderStorage.Insert(model) == null)
{
model.Status = OrderStatus.Неизвестен;
_logger.LogWarning("Failed to insert order into a storage");
@ -115,4 +115,4 @@ namespace AbstractSoftwareInstallationBusinessLogic.BusinessLogic
return StatusUpdate(model, OrderStatus.Готов);
}
}
}
}

View File

@ -22,4 +22,4 @@ namespace AbstractSoftwareInstallationContracts.ViewModels
} = new();
}
}
}

View File

@ -45,7 +45,7 @@ namespace AbstractSoftwareInstallationListImplement.Implements
{
return null;
}
foreach (var software in _source.Softwares)
foreach (var software in _source.Softwares)
{
if ((!string.IsNullOrEmpty(model.SoftwareName) &&
software.SoftwareName == model.SoftwareName) ||
@ -102,4 +102,4 @@ namespace AbstractSoftwareInstallationListImplement.Implements
}
}
}
}