If i create a new table and name it with ModelNameTableName ex: XXTable and put fields field1,field1
if i use this table in a new class that i created ex: XXclassName, if i want to use the table in this class do i need to name the variable with XX
i mean XXTable xxTable; or can i do it XXTable table;
what is the best practice for this?
Also if use this new table in a standard class should i name the variable
XXTable xxTable; or XXTable table; ???