Пример #1
0
		//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();
		}
Пример #2
0
		/// <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();
		}