Beispiel #1
0
 public SysUserInfoDataController(DataContext dataContext)
 {
     userInfoService = new SysUserInfoBLL(dataContext);
 }
 public AccountDataController(DataContext context, IMemoryCache cache)
 {
     credentialsManage   = new CredentialsManage(cache);
     sysUserInfoService  = new SysUserInfoBLL(context);
     currentUserRouteBLL = new CurrentUserRouteBLL(context);
 }
Beispiel #3
0
 public SysUserInfoDataController(DataContext dataContext, IMemoryCache cache)
 {
     userInfoService = new SysUserInfoBLL(dataContext);
     this.cache      = cache;
 }