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

            return(account);
        }