public LoginController(ISysUserService sysUserService, IAdminAuthService authenticationService,
                        IMemoryCache memoryCache)
 {
     this._memoryCache           = memoryCache;
     this._sysUserService        = sysUserService;
     this._authenticationService = authenticationService;
 }
 public UserController(ISysUserService sysUserService, ILibrarySeatService librarySeatService, IOrderDetailService orderDetailService, IAdminAuthService adminAuthService)
 {
     _sysUserService     = sysUserService;
     _librarySeatService = librarySeatService;
     _adminAuthService   = adminAuthService;
     _orderDetailService = orderDetailService;
 }
 public HomeController(ICache cache, IAdminAuthService adminAuthService
                       , IBaseUserRoleService BaseUserRoleService, IBaseMenusRoleService BaseMenusRoleService
                       , IBaseMenusService BaseMenusService)
 {
     _adminAuthService     = adminAuthService;
     _BaseUserRoleService  = BaseUserRoleService;
     _BaseMenusRoleService = BaseMenusRoleService;
     _BaseMenusService     = BaseMenusService;
 }
 public WorkContext(IAdminAuthService authenticationService)
 {
     this._authenticationService = authenticationService;
 }
 public UserInfoController(IBaseUserService baseUserService, IAdminAuthService authenticationService)
 {
     _baseUserService            = baseUserService;
     this._authenticationService = authenticationService;
 }
示例#6
0
 public LoginController(ISysUserService sysUserService, IAdminAuthService authenticationService)
 {
     this._sysUserService        = sysUserService;
     this._authenticationService = authenticationService;
 }
示例#7
0
 public MainController(IImportTrans_main_recordService importTrans_main_recordService, IAdminAuthService adminAuthService, ISysUserRoleService sysUserRoleService)
 {
     this._adminAuthService               = adminAuthService;
     this._sysUserRoleService             = sysUserRoleService;
     this._importTrans_main_recordService = importTrans_main_recordService;
 }
示例#8
0
 public WorkContext(IAdminAuthService adminAuthService)
 {
     _adminAuthService = adminAuthService;
 }
示例#9
0
 public MainController(IAdminAuthService adminAuthService, ISysUserService sysUserService)
 {
     this._adminAuthService = adminAuthService;
     _sysUserService        = sysUserService;
 }
 public LoginController(ISysUserService sysUserService, IAdminAuthService adminAuthService, IMemoryCache memoryCache)
 {
     _sysUserService   = sysUserService;
     _adminAuthService = adminAuthService;
     _memoryCache      = memoryCache;
 }
 public WorkContext(IAdminAuthService _authenticationService)
 {
     authenticationService = _authenticationService;
 }
示例#12
0
 public MainController(IAdminAuthService adminAuthService)
 {
     this._adminAuthService = adminAuthService;
 }
示例#13
0
 public WorkContext(IAdminAuthService authenticationService, ICategoryService categoryService)
 {
     _authenticationService = authenticationService;
     _categoryService       = categoryService;
 }
示例#14
0
 public AdminAuthController(IAdminAuthService adminAuthService)
 {
     _adminAuthService = adminAuthService;
 }
 public LoginController(ISysUserService sysUserService,IAdminAuthService adminAuthService)
 {
     _sysUserService = sysUserService;
     _adminAuthService = adminAuthService;
 }
 public LoginController(ISysUserService _sysUserService,
                        IAdminAuthService _adminAuthService)
 {
     sysUserService   = _sysUserService;
     adminAuthService = _adminAuthService;
 }
示例#17
0
 public MainController(IAdminAuthService adminAuthService, ILogger <MainController> logger)
 {
     _adminAuthService = adminAuthService;
     _logger           = logger;
 }
示例#18
0
 public LoginController(IMemoryCache memoryCache, ISysUserService sysUserService, IAdminAuthService adminAuthService)
 {
     this._memoryCache      = memoryCache;
     this._sysUserService   = sysUserService;
     this._adminAuthService = adminAuthService;
 }