ПИбд-23 Старостин Иван Лабораторная работа №4 #6

Closed
Ivan_Starostin wants to merge 17 commits from lab4 into lab3
Showing only changes of commit c5144b87e4 - Show all commits

View File

@ -7,6 +7,9 @@ using NLog.Extensions.Logging;
using System;
using ShipyardBusinessLogic;
using ShipyardDatabaseImplement.Implements;
using ShipyardContracts.BusinessLogicContracts;
using ShipyardBusinessLogic.OfficePackage.Implements;
using ShipyardBusinessLogic.OfficePackage;
namespace ShipyardView
{
@ -48,6 +51,12 @@ namespace ShipyardView
services.AddTransient<FormShip>();
services.AddTransient<FormShips>();
services.AddTransient<FormShipComponent>();
services.AddTransient<IReportLogic, ReportLogic>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
services.AddTransient<FormReportShipComponents>();
services.AddTransient<FormReportOrders>();
}
}
}