/// <summary> /// Constructor that takes no parameters /// </summary> public UIMenu() { database = new TheCompany(); file = new FileIO(); }
/** * @fn public EmployeeContainer(string dbFilePath, string logFilePath) * * @brief Constructor. * * @param dbFilePath Full pathname of the database file. * @param logFilePath Full pathname of the log file. */ public EmployeeContainer(string dbFilePath, string loggerFilePath) { logger = new Logger(loggerFilePath); file = new FileIO(dbFilePath); }