internal static int GetEmployeeId() { var employeeId = UserInputGathering.GetIntergerInput("Please enter the Employee ID"); if (UserInputValidation.IsValidIntegerValue(employeeId) == false) { throw new InvalidOperationException(" "); } return(employeeId); }