public MemberController(PyStudio_NetCoreContext context, IOptions <PySelfSetting> selfSetting, IMemoryCache cache)
 {
     _context     = context;
     _selfSetting = selfSetting.Value;
     _cache       = cache;
 }
 public MemberTestController(PyStudio_NetCoreContext db)
 {
     _db = db;
 }
Beispiel #3
0
 public UserCenterController(PyStudio_NetCoreContext db, IOptions <PySelfSetting> selfSetting)
 {
     _db          = db;
     _selfSetting = selfSetting.Value;
 }