The Data
Access layer is similar to other classes in the sense that it resides in a particular Namespace and contains several methods
to achieve the purposes of the calling members.
This class
contains methods for the primary purpose of creating a connection to, communicating requests, and receiving any output generated
by the database from these requests.
The primary
caller to this class is the business layer. In the business layer the data is validated for correct type, format, and adherence
to the business organizations rules. By using this multi-tiered approach, there is an additional layer of protection to the
database and when changes need to be made, the code is organized and easy to navigate.
For the purposes
of this application the Data Access class is stateless. This basically means that each transaction it processes is separate
from the last and that no state information is kept in the properties and fields of the class.
So far in
this Example we have been looking at the Add Juvenile Member Transaction and you can see the method signature code displayed
below.