Possible Duplicate:
A modern n-layer asp.net web application sample?
I'm having a hard time trying to design a solid N-Tier framework in ASP.Net. I know the basic fundementals: BLL, DAL, and Business Objects, etc. What I can't understand is the actual flow of the application and what the return types in the BLL and DAL should be.
Most articles I've read have suggested that the BLL and DAL communicate via Business Objects. However I don't see the real benefit if I have to instantiate the Business Object twice during each pass.
Does anyone have any links to good tutorials/sample applications that could guide me in the right direction?
Thanks