Browse Source

添加依赖注入

zmm 6 years ago
parent
commit
db019b7f35
1 changed files with 2 additions and 1 deletions
  1. 2 1
      CZKJ.GBRS2/ServiceConfiguration.cs

+ 2 - 1
CZKJ.GBRS2/ServiceConfiguration.cs

@@ -9,7 +9,7 @@ namespace CZKJ.GBRS2
9 9
     public static class ServiceConfiguration
10 10
     {
11 11
         public static IServiceCollection ConfigServies(this IServiceCollection service)
12
-        { 
12
+        {
13 13
             service.AddTransient<INavigation, NavigationLogic>();
14 14
             service.AddTransient<IUserInfo, UserInfoLogic>();
15 15
             service.AddTransient<IUserRoleNavMapping, UserRoleNavMappingLogic>();
@@ -30,6 +30,7 @@ namespace CZKJ.GBRS2
30 30
             service.AddTransient<ICustomerQuery, CustomerQueryLogic>();
31 31
             service.AddTransient<IVideo, VideoLogic>();
32 32
             service.AddTransient<IUserInfoCustomer, UserInfoCustomerLogic>();
33
+            service.AddTransient<IPriceAnnouncement, PriceAnnouncementLogic>();
33 34
             return service;
34 35
         }
35 36
     }