Пример #1
0
 /// <summary>
 /// Constructor that takes no parameters
 /// </summary>
 public UIMenu()
 {
     database = new TheCompany();
     file = new FileIO();
 }
Пример #2
0
 /**
  * @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);
 }