I am very new to Objected Orientated, I am trying to do something like the following.
Create a class called MuzeUpdater. In this class make several functions for updating our db. Have a function for every table, and in turn have a function that calls all the necessary functions to do the full update. Only the Main function, and each of the functions that start the updating process for each table should be public. Contain all the parsing logic in one or more private functions that every one of the public functions will use (except the main one).
How would the structure of my class would look like?
Thanks
Create a class called MuzeUpdater. In this class make several functions for updating our db. Have a function for every table, and in turn have a function that calls all the necessary functions to do the full update. Only the Main function, and each of the functions that start the updating process for each table should be public. Contain all the parsing logic in one or more private functions that every one of the public functions will use (except the main one).
How would the structure of my class would look like?
Thanks