CS计算机代考程序代写 // Workshop 2:

// Workshop 2:
// Version: 1.0
// Date: 2021/5/28
// Author: Fardad Soleimanloo
// Description:
// This file tests the part 1 section of your workshop
// Do not modify your code
/////////////////////////////////////////////
#include “Employee.h”
using namespace sdds;
int main() {
if (load()) {
display();
}
deallocateMemory();
return 0;
}