#include "stdstuff.h" #include "Customer.h" // Your method implementations go here. // the constructor creates a customer with id 10, total 0, date 1 1 2011 and name "default" Customer::Customer() { id = 10; total = 0; purchDate = Date(1,1,2011); custName = "default"; } // put the rest of the method implementations here