I am learning DDD development for few days, and i start to like it.
I (think i) understand the principle of DDD, where your main focus is on business objects, where you
Recently I've done similar project. I was following this tutorial: link And I've done it this way: I've created Blank solution, added projects: Domain, Service and WebUI.
Simply said in domain I've put model (for example classes for EF code first, methods etc.) Service was used for domain to communicate with world (WebUI, MobileUI, other sites etc.) using asp.net webapi WebUi was actually MVC application (but model was in domain so it was mostly VC)
Hope I've helped