I have a class that represents one of my data source for both reading and writing. I started out with a bunch of basic functions for talking to the database: connect, disconnect, executeQuery, executeNonQuery, etc.
Then I started implementing public functions for the reads and writes as I've needed them.
public function getCustomer() as Customer
public function writeCustomer(cust as Customer) as Boolean
.......
As the application has grown, I've needed to add more and more of these reader and writer functions. This class has grown out of control. Should I be including all of these read and write functions in the data model class? Is there a better design pattern I should be following?