コード例 #1
0
        public void SetUp()
        {
            theSettings   = new AuthenticationSettings();
            theSystemTime = new SettableClock();

            theRule = new LockedOutRule(theSettings, theSystemTime);
        }
コード例 #2
0
        public void SetUp()
        {
            theSettings = new AuthenticationSettings();
            theSystemTime = new SettableClock();

            theRule = new LockedOutRule(theSettings, theSystemTime);
        }
コード例 #3
0
 public LoginLockoutGrammar() : base("Locked out rules")
 {
     _lockedOutRule = new LockedOutRule(_settings, _systemTime);
 }