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

18
Code/AccountType.java Normal file
View File

@@ -0,0 +1,18 @@
public class AccountType {
private int typeID;
private String typeName;
public void setTypeID(int typeID) {
this.typeID = typeID;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public int getTypeID() {
return typeID;
}
public String getTypeName() {
return typeName;
}
}