Putilin P. A. Lab work 8 Base #13

Closed
Pavel wants to merge 4 commits from Lab8Base into Lab7Base
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 7de04ad2af - Show all commits

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();
}
}