first commit

This commit is contained in:
Ali Can Zeybek
2025-01-09 20:02:51 +03:00
commit 72514365eb
55 changed files with 1285 additions and 0 deletions

32
Code/Account.java Normal file
View File

@@ -0,0 +1,32 @@
public class Account {
private int account_number;
private String password;
private double balance;
private int accountType;
public int getAccount_number() {
return account_number;
}
public String getPassword() {
return password;
}
public double getBalance() {
return balance;
}
public int getAccountType() {
return accountType;
}
public void setAccount_number(int account_number) {
this.account_number = account_number;
}
public void setPassword(String password) {
this.password = password;
}
public void setBalance(double balance) {
this.balance = balance;
}
public void setAccountType(int accountType) {
this.accountType = accountType;
}
}