Click here to Skip to main content
15,893,668 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a service layer project in which all the data access and business logic is inside web methods. I want to to refactor the code such that all the concerns are separated. The data access is happening by using methods from imported dlls(Does not have any link to our own database. We are using some third party dlls). How can refactoring be done in this situation? What would be the best design for this case?

What I have tried:

Searched but could not find appropriate solution.
Posted
Updated 31-May-16 1:52am

1 solution

Refer all that Data access dll in DAL Layer. Access DAL in BL layer. and BL in your Page behind.
DAL - Separate Library project.
BL - Separate Library Project.
Application.> BL > DAL.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900