In my previous post, I mentioned the creation of a home automation application using LightSpeed 3.0 and ASP.Net. In this post, I’m going to start with an explanation of basic project setup. In the posts that follow, I’ll elaborate on the development of individual areas of the application.
Initial Solution Structure
The initial solution contains the following projects:
Domain – Includes the core domain model as well as the interfaces that may be used to operate on the model. Most of these interfaces will be implemented by the AppServices, DataAccess, and DomainServices libraries.
AppServices...