Пример #1
0
 /// <summary>
 /// 构造器
 /// </summary>
 /// <param name="context"></param>
 public UserRepository(ISugarDbContext context) :
     base(context)
 {
 }
Пример #2
0
 public BaseRepository(ISugarDbContext db, string dbName = SqlSugarOptions.DbName)
 {
     this.db     = db;
     this.dbName = dbName;
 }
Пример #3
0
 public TokenRepository(ISugarDbContext context) :
     base(context)
 {
 }