示例#1
0
        public void verifyAccount(String id, String password)
        {
            ACCOUNT account = _model.findAccount(id, password);

            if (account != null)
            {
                _view.veryfyAccount(account.ACC_CODE);
            }
            else
            {
                _view.veryfyAccount(null);
            }
        }