Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/src/Yi.Abp.SqlSugarCore/YiDbContext.cs 378 Bytes
3ae287f3   “wangming”   项目初始化,准备开始开发
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  using Microsoft.Extensions.Logging;
  using SqlSugar;
  using Volo.Abp.DependencyInjection;
  using Yi.Framework.Rbac.SqlSugarCore;
  using Yi.Framework.SqlSugarCore;
  
  namespace Yi.Abp.SqlSugarCore
  {
      public class YiDbContext : SqlSugarDbContext
      {
          public YiDbContext(IAbpLazyServiceProvider lazyServiceProvider) : base(lazyServiceProvider)
          {
          }
      }
  }