Exemplo n.º 1
0
        internal static int GetEmployeeId()
        {
            var employeeId = UserInputGathering.GetIntergerInput("Please enter the Employee ID");

            if (UserInputValidation.IsValidIntegerValue(employeeId) == false)
            {
                throw new InvalidOperationException(" ");
            }

            return(employeeId);
        }