| 131 | public: |
| 132 | |
| 133 | FreshGroceries() { |
| 134 | price = 0.0; |
| 135 | quantity = 0; |
| 136 | quantity_purchased = 0; |
| 137 | } |
| 138 | |
| 139 | FreshGroceries(string name, string UIC, double price, int quantity, int quantity_purchased) : Item(name, UIC) { |
| 140 | this->price = price; |
nothing calls this directly
no outgoing calls
no test coverage detected