project with 2 types of interfaces performing different jobs, should they use the same BLL and DAL?
- by user2080257
i am working on a project that has two interface (web and desktop), they are not performing the same tasks but they use the same BLL and DAL, the web part using 100% of the BLL and DAL, while the desktop only needs to know about 20% of the BLL and DAL.
do you think it is a good idea to let the desktop use the same BLL and DAL as the web, which…