Questions tagged [bank]
169 questions
-4
votes
1 answer
Transfers to user's bank account
On paypal, it is possible for a user to purchase services on a site by bank card or by paypal account.
But is it possible for the site to make transfers automatically to a user's bank account?
Thank you in advance.

cibou
- 9
- 1
- 3
-5
votes
1 answer
Write a class for a simple credit card account
A credit account has a description, principal balance, an APR, a minimum monthly payment percentage (usually between 1% and 3%) and a minimum monthly payment amount.In addition to the constructor, setters, getters, and toString methods, add methods…

Chrisi Lerchen
- 3
- 1
- 1
- 5
-6
votes
2 answers
Property asking different amounts of constructors
I've got a short question. I have a class Bank that needs to have a property with different amounts of constructors.
class Program
{
static void Main(string[] args)
{
Bank ing = new Bank("ing");
int AccountNrName1 =…

gowiththestackflow
- 36
- 5
-7
votes
1 answer
How to set and call private data members of multiple classes?
Overview: I'm trying to create a bank account program that has multiple classes (4 to be exact). Here's the heirarchy -
Bank
Account accounts;
Account
Depositor depositor_info;
Int Account_number;
Double account_balance;
Depositor
Name…