Koscheev.M. S. Lab work 4 Hard #13

Closed
1maksim1 wants to merge 5 commits from Lab4_Hard into Lab3_Hard
Showing only changes of commit 126ace800a - Show all commits

View File

@ -1,7 +1,6 @@
using SoftwareInstallationContracts.BindingModels;
using SoftwareInstallationContracts.BusinessLogicsContracts;
using Microsoft.Extensions.Logging;
using SoftwareInstallationBusinessLogic;
namespace SoftwareInstallationView
{
@ -10,7 +9,7 @@ namespace SoftwareInstallationView
private readonly ILogger _logger;
private readonly IOrderLogic _orderLogic;
private readonly IReportLogic _reportLogic;
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, ReportLogic reportLogic)
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, IReportLogic reportLogic)
{
InitializeComponent();
_logger = logger;