DataAccessLayer DLL C#

DataAccessLayer is a code purely in c #.

Versatility and simplicity of use:

• Connect to the following databases
                Oracle 10/11 -  SQLServer 2008/2012/2014 -   MySQL 5.X.X
• allows you to manage the CRUD functions in the database.
• Only two methods exposed by the DLL are invoked:

ActionOnDB for Insert, Delete, Update
SelectFromDB for Select

• It is possible to choose the type of data returned: JSON or SERIALIZED data
• It is possible to execute a stored procedure or a query

DLL C# On Three-tier architecture

Only the dll is released, to be referenced in the BLL layer.

Usability:

The dll is used as the last layer of an architecture with 3 or more levels.

DLL C# with SOA Services

Only the dll is released, to be referenced in the WCF layer.

Usability:

The dll is used as the last layer of an SOA architecture with WCF.

DLL C# with WEB-API

Only the dll is released, to be referenced in the BLL layer.

Usability:

The dll is used as the last layer of an architecture with WEBAPI.