public OauthController(IOptions <AppAuthenticationSettings> appSettings, ISysUserRepo sysUserRepo, ISysUserActionLogRepo sysUserActionLogRepo, IUnitOfWork unitOfWork ) { this._appSettings = appSettings.Value; this._sysUserRepo = sysUserRepo; this._sysUserActionLogRepo = sysUserActionLogRepo; this._unitOfWork = unitOfWork; }
public SysUserLogController(ISysUserActionLogRepo sysUserActionLogRepo) { this._sysUserActionLogRepo = sysUserActionLogRepo; }