コード例 #1
0
ファイル: Program.cs プロジェクト: lwolf83/Project2-Banque
        static void RunListTransactionCommand(TransactionListOptions opts)
        {
            List <AbstractTransaction> transactionList = DBQuery.GetTransactionList(opts.AccountNumber);

            IO.DisplayTransactionList(transactionList);
        }
コード例 #2
0
ファイル: Customer.cs プロジェクト: lwolf83/Project2-Banque
        public static List <AbstractAccount> GetAccountList(int id)
        {
            List <AbstractAccount> currentCustomerAccountsList = DBQuery.GetAccountsCustomer(id);

            return(currentCustomerAccountsList);
        }