protected bool CheckNext(string email, string password)
        {
            if (next == null)
            {
                return(true);
            }

            return(next.Check(email, password));
        }
示例#2
0
        protected Boolean CheckNext(string email, string password)
        {
            if (_next == null)
            {
                return(true);
            }

            return(_next.Check(email, password));
        }