This commit is contained in:
Павел Путилин 2023-05-07 17:58:24 +04:00
parent 0c90a67bda
commit 7de04ad2af
2 changed files with 4 additions and 2 deletions

View File

@ -180,8 +180,8 @@ namespace PrecastConcretePlantView
private void DoWorkToolStripMenuItem_Click(object sender, EventArgs e)
{
_workProcess.DoWork((
Program.ServiceProvider?.GetService(typeof(IImplementerLogic)) as IImplementerLogic)!,
_workProcess.DoWork(
DependencyManager.Instance.Resolve<IImplementerLogic>(),
_orderLogic);
MessageBox.Show("Процесс обработки запущен", "Сообщение",
MessageBoxButtons.OK, MessageBoxIcon.Information);

View File

@ -74,5 +74,7 @@ namespace PrecastConcretePlantFileImplement
new XAttribute("SenderName", SenderName),
new XAttribute("DateDelivery", DateDelivery)
);
public int Id => throw new NotImplementedException();
}
}