so, I have this:
- Web App
- Business Logic
- Data Access Logic
I created in the data access logic, the entities, the context, the initializer.
SO usually the higher layers, call the lower layer functionality, right?
If I want to save a customer, I want to create a Customer entity from the web app. What I dont like is having a direct reference from the web app layer to the data access logic layer (class library)
any idea?