コード例 #1
0
ファイル: AccountsBL.cs プロジェクト: matos-jeffrey/project0
        public static Accounts UpdateBalance(int userID, int accID, double balance)
        {
            AccountsDAL dal     = new AccountsDAL();
            var         account = dal.UpdateBalance(userID, accID, balance);

            return(account);
        }