Class Libraries Project Reference
I am making a desktop and a Web application and i have two class libraries. DAL and LL. My question is how should I form the dependencies? I need to use Dal in my desktop and web app to make crud operations. I need to use LL in my DAL to access models and some classes. I am trying to make my app according to the SOLID principles. I am very confused.

