i want to know what should i do first , or the main points that i should start with
pleaes help me :(
Project: General Distribution Center
This project aims to develop a C++ program that support a General Distribution Center using object oriented concept. The General Distribution Center has a Name, and two kinds of customers: Factories that offering the products and Individual customers who are looking for products.
For each Individual customer a customer ID, a Name, an Address, and a Phone Number. Each Factory customer has a customer ID, a Name, and an address. Factories advertise production line that consist of a product ID, a product Name, a product Price, Special offer that is a special price for wholesale orders and the Date of availability of the product. Factories can Create, Modify, and Delete product. The General Distribution Center stores the customers in an array and can Create, Modify, and Delete customer.
Hint: start with create two classes: Individual class and Factory class.