Changed to dotnet core net6

This commit is contained in:
2022-02-01 21:27:40 +01:00
parent 5f0c4ef990
commit 6e7091416d
10 changed files with 33 additions and 11 deletions

View File

@ -1,4 +1,5 @@
using Microsoft.Extensions.DependencyInjection;
using BrowserHelper.Driver;
using Microsoft.Extensions.DependencyInjection;
using SqliteBackups;
using SqliteBackups.Interfaces;
using StockBL;
@ -28,6 +29,8 @@ namespace StockInfoCore
services.AddTransient<IAddressRepository,AddressRepository>();
services.AddTransient<IStockPersonConnect,StockPersonConnect>();
services.AddTransient<IPersonStockFacade,PersonStockFacade>();
services.AddTransient<IBrowserDriver, BrowserDriver>();
services.AddTransient<IDriverFixture, DriverFixture>();
services.AddTransient<frmBackup>();
services.AddTransient<frmRegisterStock>();