Build with DDD structure in mind the project is divided in 3 parts.
- UI
- Data
- Domain
Following options are available:
- Inventory - FULL CRUD
- Offices - FULL CRUD
- Currencies - Read, Create, Update
- Reports:
- Inventory near end of warraty
- Inventory per office
- Categories - Read, Create,
To configure the Connection string do following:
- Add appsettings.json to the MiniProject-Console.Data project folder with the following information:
{
"ConnectionStrings": {
"InventoryDatabase": "Data Source = SOURCE; Initial Catalog = CATALOG ; User Id = USER; Password = PASSWORD;"
}
}