/*
 * Employee.cc
 */
#include "CRN.h"
#include "Date.h"
#include "Employee.h"
#include <string>

namespace IDA_Person
{
   using namespace std;

   string Employee::str() const
   {
      return Person::str() + e_date_.str() + ' '
	+ to_string(dept_) + ' ' + to_string(e_number_) + " Employee " ;
   }

} // namespace IDA_Person