Not sure if I have the right terminology, but I'm a little confused about how to set up my three-tier system.
Suppose I have a user table in my database.
In my DAL, I have a UserDB class that calls stored procs in its DB to insert, update, delete. I also have a UserDetails class that is used in UserDB to return and pass objects.
So now I'm not sure how to use this in my business logic layer. Do I need another class of BLL objects for users? If so, would that be superfluous? Or am I just using the UserDetails class throughout my BLL?
source
share