Hi,
I'm looking to create set classes that represent the data stored tables.
In the each of the following tables
Table Name .Net Class Name
Customers Customer
Employees Employee
Orders Order
Order Details OrderDetail
Each of the fields in these tables should be represented by private instance variables in the equivalent classes. The classes should also implement Properties that will allow the client of the class read or write values to the instance variables. The client should not be given direct access to variables.
Each of the properties should be coded to ensure that only valid data can be written to the classes.
Can anyone help me out or point me in the right direction?
Thanks,