https://github.com/abualiyousef/simple-inventory-management-system
A simple console-based inventory management system in C# for managing a list of products. Features include adding, viewing, editing, deleting, and searching for products. Developed with object-oriented programming and version control using Git and GitHub.
https://github.com/abualiyousef/simple-inventory-management-system
console-application csharp dotnet
Last synced: 3 months ago
JSON representation
A simple console-based inventory management system in C# for managing a list of products. Features include adding, viewing, editing, deleting, and searching for products. Developed with object-oriented programming and version control using Git and GitHub.
- Host: GitHub
- URL: https://github.com/abualiyousef/simple-inventory-management-system
- Owner: AbualiYousef
- Created: 2024-02-27T21:39:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-13T04:03:35.000Z (about 2 years ago)
- Last Synced: 2026-01-03T10:29:39.231Z (7 months ago)
- Topics: console-application, csharp, dotnet
- Language: C#
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Inventory Management System
ِA basic inventory management system C# console-based application.
This system will allow a user to manage a list of products, where each product has a name, price, and quantity in stock.
# Main Functionalities
- Add a product: The user is prompted for the product name, price, and quantity. The product with this attributes will be added to the inventory if there is not other product with the same name.
- View all products: Display a list of all products in the inventory, along with their prices and quantities.
- Edit a product: The user is asked for a product name. If the product is in the inventory, the user is allowed to update its name, price, or quantity.
- Delete a product: The user is asked for a product name. If the product is in the inventory, it will be removed.
- Search for a product: The user is asked for a product name. If the product is in the inventory, its name, price, and quantity will be displayed. If not, the user will be informed the product was not found.