// // Created by DH10MBO on 21.11.2024. // #ifndef PRODUCTSALE_H #define PRODUCTSALE_H #include class ProductSale { private: std::string region; std::string country; std::string itemType; std::string salesChannel; std::string orderPriority; std::string orderDate; std::string orderId; std::string shipDate; int unitsSold; double unitPrice; double unitCost; double totalRevenue; double totalCost; double totalProfit; public: ProductSale(std::string line); std::string toString(); }; #endif //PRODUCTSALE_H