public UserBus(IUserDao userDao, ILogger <UserBus> logger, IAuthDao authDao, IThemeDao themeDao)
 {
     this._userDao  = userDao;
     this._logger   = logger;
     this._authDao  = authDao;
     this._themeDao = themeDao;
 }
Exemple #2
0
 public AuthLogic(IAuthDao authDao)
 {
     _authDao = authDao;
 }
Exemple #3
0
 public RoleBus(IRoleDao roleDao, ILogger <RoleBus> logger, IAuthDao authDao)
 {
     this._roleDao = roleDao;
     this._logger  = logger;
     this._authDao = authDao;
 }
 public AuthManager(IAuthDao auth)
 {
     authDao = auth;
 }