I started a simple project in 3 Tier. Added a Windows Forms Application as presentation layer, a class library as DAL and another class library as BLL.
Now, I designed some form in Presentaion layer and tried to access the BLL Class Library. But, I dont get the namespace of the BLL Class library.
I tried Imports BLL
, but BLL is not shown only the namespace of the presentation tier is shown.
Then I tried the same with DAL and BLL, neither of these projects were able to access other project within a solution.
How to fix this?