Releases: DotNetBackendTraining/simple-inventory-management-system
Releases · DotNetBackendTraining/simple-inventory-management-system
MS SQL Branch Update - Dapper Integration
Description
- Added Dapper ORM.
- Replaced all low level SQLReader, SQLWrite, Mapping logic.
Full Changelog: mssql-v1.0.0...mssql-v1.1.0
Minor Update - Asynchronous Implementation
MS SQL Integration - Initial Release
Description
- Complete integration with MS SQL Server for backend storage.
Full Changelog: v1.0.0...mssql-v1.0.0
MongoDB Integration - Initial Release
Description
- Complete integration with MongoDB for backend storage.
Full Changelog: v1.0.0...mongo-v1.0.0
Initial Release - Requirements Completed
Description
- Allows a user to manage a list of products, where each product has a name, price, and quantity in stock.
Features
- Add a product: Prompt the user for the product name, price, and quantity, then add the product to the inventory.
- View all products: Display a list of all products in the inventory, along with their prices and quantities.
- Edit a product: Ask the user for a product name. If the product is in the inventory, allow the user to update its
name, price, or quantity. - Delete a product: Ask the user for a product name. If the product is in the inventory, remove it.
- Search for a product: Ask the user for a product name. If the product is in the inventory, display its name,
price, and quantity. If not, let the user know the product was not found. - Exit: Close the application.