The main purpose of it is to record Orders in database and have basic CRUD funtionalities on it.
The App is divided into 7 different projects.
- Server project
- Client project
- Api project
- DataAccess project
- Bussiness Project
- Models project
- Common project
This structure is supposed to be self describing, and each one of them encapsulates an integral part of the entire solution.
First: Clone the repo from github Second: Change the Connection strings in the appsettings.json files Third: Choose three projects as startup projects in following order (make sure they all run on IIS Express) 1. Api 2. Client 3. Server Make sure the database server is also running. Start the project.
- On the server side, if logged as addming , you can create Window objects, configure it's SubElements and save them in the database (all Crud functionalities applicable)
- on the client side you can place Orders , containing Window objects
All of the required functionalities are implemented, I just want to implement some are functionalities from now on.