Approach on Software Development Architecture

Posted by john ryan on Programmers See other posts from Programmers or by john ryan
Published on 2012-09-06T02:15:30Z Indexed on 2012/09/06 3:48 UTC
Read the original article Hit count: 323

Hi i am planning to standardize our way of creating project for our new projects.

Currently we are using 3tier architecture where we have our ClassLibrary Project where it includes our Data Access Layer and Business Layer

Something like:

   Solution ClassLibrary 
     >ClassLibrary Project :
          >DAL(folder)
               > DAL Classes
          >BAL(folder)
               > BAL Classes

And this Class Library dll was reference on our presentation Layer Project which are the Application(web/desktop)

Something like:

     Solution WebUniversitySystem 
     >Libraries(folder)
          > ClassLibrary.dll
     >WebUniversitySystem(Project):
          >Reference ClassLibrary.dll 
          >Pages etc...

Now i am planning to do is something like:

 Solution WebUniversitySystem 
     >DataAccess(Project)
     >BusinesLayer(Project)
          >Reference DAL
     >WebUniversitySystem(Project):
          >Reference BAL
          >Pages etc...

Is this Ok ? Or there is a good Approach that we can follow?

Thanks In Regards

© Programmers or respective owner

Related posts about design-patterns

Related posts about coding-standards