#include "Customer.h" #include using namespace std; void Customer::set(int money) { totalMoney = money; } void Customer::spend(int value) { totalMoney -= value; } int Customer::getAmount() { return totalMoney; }