//Implementation of IMainController /// <summary> /// Generates the employee. /// This method should be implemented regardless of platform so it is included in IMainController /// </summary> public void GenerateEmployee () { _currentEmployee = Employee.GenerateEmployee(); }
/// <summary> /// Resets the current employee /// This method should be implemented regardless of platform so it is included in IMainController /// </summary> public void Clear () { _currentEmployee = new Employee(); }