From d66cbfe2dec69d08f9905b320851eb11d09567bc Mon Sep 17 00:00:00 2001 From: PC-201906131823\Administrator <zyyao> Date: 星期三, 10 十一月 2021 16:14:55 +0800 Subject: [PATCH] 提交 --- zhengcaioa/zhengcaioa/Startup.cs | 19 +++++++++++++++++-- 1 files changed, 17 insertions(+), 2 deletions(-) diff --git a/zhengcaioa/zhengcaioa/Startup.cs b/zhengcaioa/zhengcaioa/Startup.cs index 53de1cf..0fff994 100644 --- a/zhengcaioa/zhengcaioa/Startup.cs +++ b/zhengcaioa/zhengcaioa/Startup.cs @@ -68,7 +68,12 @@ var connectionString = Configuration.GetConnectionString("DefaultConnection"); services.AddDbContext<zhengcaioaContext>(options => - options.UseSqlServer(connectionString)); + options.UseSqlServer(connectionString)); + + var connectionString1 = Configuration.GetConnectionString("zcwebConnection"); + services.AddDbContext<zcwebContext>(options => + options.UseSqlServer(connectionString1)); + services.AddControllersWithViews(); services.AddScoped(typeof(ISimService), typeof(SimService)); @@ -139,7 +144,17 @@ services.AddScoped(typeof(IOrderBanciDtlService), typeof(OrderBanciDtlService)); services.AddScoped(typeof(IOrderBanciService), typeof(OrderBanciService)); services.AddScoped(typeof(IOrderBanciOrderService), typeof(OrderBanciOrderService)); - + services.AddScoped(typeof(ISysBaimingdanService), typeof(SysBaimingdanService)); + + services.AddScoped(typeof(IAdmZhanghaomimaService), typeof(AdmZhanghaomimaService)); + services.AddScoped(typeof(IAdmTongxunluService), typeof(AdmTongxunluService)); + + services.AddScoped(typeof(IAskService), typeof(AskService)); + services.AddScoped(typeof(IAdmGoodsRecordService), typeof(AdmGoodsRecordService)); + services.AddScoped(typeof(IExpertTestTopicService), typeof(ExpertTestTopicService)); + + //zcweb + services.AddScoped(typeof(IDtChannelArticleNewsService), typeof(DtChannelArticleNewsService)); //定时执行 services.AddHostedService<TimedBackgroundService>(); -- Gitblit v1.9.1