DataObjects Namespace

Design Pattern Framework 3.5

Design Pattern Framework 3.5 DataObjects Namespace
Patterns-In-Action! ApplicationDataObjects
 
Declaration Syntax
C# Visual Basic
namespace DataObjects
Namespace DataObjects
Types
All Types Classes Interfaces
Icon Type Description
CopyOfDaoFactory
Abstract factory class that creates data access objects.

DaoFactories
Factory of factories. This class is a factory class that creates data-base specific factories which in turn create data acces objects.

DaoFactory
Abstract factory class that creates data access objects.

DataAccess
This class shields the client from the details of database specific data-access objects. It returns the appropriate data-access objects according to the configuration in web.config.

ICustomerDao
Defines methods to access and maintain customer data. This is a database-independent interface. The implementations will be database specific.

IOrderDao
Defines methods to access orders and order details. This is a database-independent interface. The implementations will be database specific.

IProductDao
Defines methods to access categories and products. This is a database-independent interface. The implementations will be database specific.