Skip to content

Releases: DotNetBackendTraining/simple-inventory-management-system

MS SQL Branch Update - Dapper Integration

02 May 12:03
Compare
Choose a tag to compare

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

16 Apr 08:51
Compare
Choose a tag to compare

Summary

  • Use of asynchronous methods
  • Other code enhancements

Full Changelog: v1.0.0...v1.1.0

MS SQL Integration - Initial Release

16 Apr 09:01
Compare
Choose a tag to compare

Description

  • Complete integration with MS SQL Server for backend storage.

Full Changelog: v1.0.0...mssql-v1.0.0

MongoDB Integration - Initial Release

16 Apr 09:04
Compare
Choose a tag to compare

Description

  • Complete integration with MongoDB for backend storage.

Full Changelog: v1.0.0...mongo-v1.0.0

Initial Release - Requirements Completed

16 Apr 08:50
Compare
Choose a tag to compare

Description

  • Allows a user to manage a list of products, where each product has a name, price, and quantity in stock.

Features

  1. Add a product: Prompt the user for the product name, price, and quantity, then add the product to the inventory.
  2. View all products: Display a list of all products in the inventory, along with their prices and quantities.
  3. 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.
  4. Delete a product: Ask the user for a product name. If the product is in the inventory, remove it.
  5. 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.
  6. Exit: Close the application.