Esempio n. 1
0
        public static Accounts Get(int userID, int accID)
        {
            AccountsDAL dal     = new AccountsDAL();
            var         account = dal.Get(userID, accID);

            return(account);
        }