0% found this document useful (0 votes)
3 views12 pages

Project Presentation

The document presents a Boutique Management System developed in C++, which manages inventory, employees, and customer purchases through various data structures like linked lists and stacks. Key features include an inventory module, shopping cart system, employee management, and a product recommendation system, all accessible via a user-friendly interface. The system is designed to enhance organization and efficiency in boutique operations while demonstrating practical applications of object-oriented programming and data structures.

Uploaded by

anumsaeed095
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views12 pages

Project Presentation

The document presents a Boutique Management System developed in C++, which manages inventory, employees, and customer purchases through various data structures like linked lists and stacks. Key features include an inventory module, shopping cart system, employee management, and a product recommendation system, all accessible via a user-friendly interface. The system is designed to enhance organization and efficiency in boutique operations while demonstrating practical applications of object-oriented programming and data structures.

Uploaded by

anumsaeed095
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 12

Presented by

Hadia Fatima
Boutique Management System SP24-BDS-015
Maryam Saeed
SP24-BDS-024
Instructor: Sir Yasir Munir
 Introduction
 Title: What is the Boutique Management System?
 Content:
 A C++ console-based application.
 Manages inventory, employees, and customer
purchases.
 Simulates a boutique store environment.
 Uses data structures like linked lists, stacks,
maps, and queues.
Inventory Management
Title: Inventory Module
Content:
•Uses doubly linked list to manage products.
•Each product includes ID, name, quantity, and price.

•Supports:
• Adding products
• Displaying inventory
• Searching by ID or name
• Updating quantity on checkout
Customer Cart System

Title: Shopping Cart & Checkout


Content:

•Uses stack to simulate the cart (LIFO behavior).


•Customers can:
• Add items to cart
• Checkout purchases
• Validate stock before checkout
Employee Management

Title: Managing Employees


Content:
•Uses map with employee ID as key.

•Allows:
• Adding new employees
• Viewing all employees
• Searching by ID
Recommendation System

Title: Product Recommendation System

Content:
•Implemented using graph (adjacency list).
•Suggests products based on customer choices.
•Example: Buying a dress may recommend a bag.
Main Menu Overview

Title: User Interface & Menus


Content:
•Three Main Menus:
• Main Menu
• Employee Menu
• Customer Menu
•Switch-based interface for easy navigation
Key Features Summary

Title: Key Features Recap

•Linked list for dynamic inventory


•Stack for cart management
•Map for fast employee lookup
•Graph for recommendations
•Interactive menus
Demo Flow

Title: Demonstration Flow


Steps:
1.Open Main Menu
2.Go to Customer Menu
3.Search & add products
4.View recommendations
5.Checkout
6.Go to Employee Menu
7.Add & search employees

If you're doing a live demo, follow this flow to highlight all major
functionalities clearly
Feature Data Structure Used

Inventory Doubly Linked List

Cart Stack

Employees Map

Recommendations Graph

Menu Navigation Switch/Loop

Data Structures Used


Title: Behind the Scenes
Benefits of the System

Title: Why This System is Effective

•Organized product tracking


•Easy employee record handling
•Helpful shopping experience
•Simple and fast interface
Conclusion

•Demonstrates practical application


of C++
•Reinforces understanding of OOP
and data structures
•Easy to expand or integrate with
GUI/DB

You might also like