System Overview: Difference between revisions
From EPOD
(Created page with "-Overview- The system consists of several key areas: *Database This currently is configured for all installation on a SQL Server DB. Within the database we have several tables an...") |
No edit summary |
||
Line 1: | Line 1: | ||
Overview | |||
The system consists of several key areas: | The system consists of several key areas: | ||
*Database | *Database |
Revision as of 10:57, 4 October 2012
Overview The system consists of several key areas:
- Database
This currently is configured for all installation on a SQL Server DB. Within the database we have several tables and a series of stored procedures to access and manipulate data. The stored procedures are called from the data access layer, no sql is manually executed from here.
- Data Access Layer
This is sometimes refered to as the server. In reality this is a series of C# classes that represent the database tables as objects and allow interaction with the stored procedures. Some business logic is excuted here in, moving forward more business logic should be included in here.