コード例 #1
0
ファイル: AccountPresenter.cs プロジェクト: jceation/ushop
        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);
            }
        }