first commit
This commit is contained in:
18
Code/AccountType.java
Normal file
18
Code/AccountType.java
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user