This commit is contained in:
Павел Сорокин 2023-04-11 11:51:23 +04:00
parent 718c755d55
commit b13f1eab71
2 changed files with 4 additions and 3 deletions

View File

@ -211,7 +211,7 @@ namespace ShipyardView
_workProcess.DoWork((
Program.ServiceProvider?.GetService(typeof(IImplementerLogic)) as IImplementerLogic)!,
_orderLogic);
MessageBox.Show("","",
MessageBox.Show("Передано на работу","произведен запуск",
MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}

View File

@ -88,6 +88,8 @@ namespace ShipyardBusinessLogic.BusinessLogics
{
Id = order.Id,
});
// отдыхаем
Thread.Sleep(implementer.Qualification * _rnd.Next(10, 100));
}
// кто-то мог уже перехватить заказ, игнорируем ошибку
catch (InvalidOperationException ex)
@ -101,8 +103,7 @@ namespace ShipyardBusinessLogic.BusinessLogics
throw;
}
// отдыхаем
Thread.Sleep(implementer.Qualification * _rnd.Next(10, 100));
}
});
}